In the .Net framework, ConfigurationManager is a built-in object that provides access to configuration files.
I had some trouble on a test server with an ASP.NET website. I goofed, and had the home directory …
c# asp.net behavior configurationmanager webconfigurationmanagerUsing VS2010 I have the following in my web.config (detail removed). <system.serviceModel> <behaviors /> <…
c# web-config app-config configurationmanagerQuick background: I have a VB.NET application in which I was previously using ConfigurationSettings.AppSettings to read from app.…
vb.net configurationmanagerWhat is the main difference between System.Configuration.ConfigurationManager.AppSettings["key"] and System.Configuration.ConfigurationSettings.AppSettings["key"] ?
c# configurationmanagerI am not able to get the connectionString from App.Config file.. Am I missing something? after creating the class, …
c# app-config configurationmanagerI am using ConfigurationManager.AppSettings collection to retreive configuration values from a Web.config file in an ASP.NET application. …
asp.net caching web-config configurationmanagerI would like to override the use of the standard app.config by passing a command line parameter. How do …
.net configuration configurationmanagerI'm trying to persist user settings to a configuration file using ConfigurationManager. I want to scope these settings to the …
c# .net configuration-files configurationmanager settingsI want to store a sql query in app.config file which has < and > characters but file shows …
c# configuration app-config configuration-files configurationmanagermy desired app.config would be like this: <configSections> <sectionGroup name="QA_Environment"> <section name="…
c# app-config appsettings configurationmanager custom-sections