Wednesday, October 15, 2014

Reading Keys from Web.config file.

Try using the WebConfigurationManager class instead. For example:
C# string userName = WebConfigurationManager.AppSettings["PFUserName"];
OR
VB.NET Dim userName as String = WebConfigurationManager.AppSettings("PFUserName")

No comments:

Accessibility Basics for Web Developers

Understanding Web Accessibility Definition and Importance Web accessibility refers to the design and development of websites, tools, and...