Tagged Questions
12
votes
3answers
4k views
What's the difference between the WebConfigurationManager and the ConfigurationManager?
What's the difference between the WebConfigurationManager and the ConfigurationManager?
When should I use one over the other?
UPDATED
I just looked at the WebConfigurationManager, and for some ...
2
votes
2answers
4k views
Differences in behavior between System.Web.Configuration.WebConfigurationManager and System.Configuration.ConfigurationManager
I had some trouble on a test server with an ASP.NET website. I goofed, and had the home
directory of the Default Web Site pointed to the wrong place. When I tried:
...
1
vote
1answer
51 views
.NET ConfigurationElementCollection.Add method does not add item to collection
I have a custom configuration section running under ASP.NET 4.0 that I would like to save changes to. The classes involved are:
QueueConfiguration: a ConfigurationElement
QueueCollection Queues // ...
1
vote
1answer
512 views
ASP.NET: HttpRuntime.Cache getting flushed when saving WebConfigurationManager — Is this a bug?
Recently, I've been experimenting with caching objects with HttpRuntime.Cache and I was generally under the impression that if I "added" something to the cache like this:
...
1
vote
2answers
471 views
Trying to open a section from the web.config spans a ConfigurationErrorsException: The entry KEY has already been added
I'm trying to fetch some settings from my membership provider in my asp.net application (so that I don't have to duplicate the information in the appSettings section) but I am getting the following ...
0
votes
2answers
72 views
Prevent config files error to render in browser
I have a custom config file in my application say my.config. Suddenly I ecnountered with some error regarding one of the settings inside the config file and the strange thing happens- my content of ...
0
votes
2answers
85 views
how can i use same web.config file for two web appliction?
I have two web application. Their folder hierarchy in server is like that.
first one is : .../firstapplitaion
second is : .../firstapplication/secondapplication/Default.aspx
At first can i run them ...
0
votes
2answers
206 views
WebConfigurationManager error after adding siteMap
Hello
I'm getting this error:
Compiler Error Message: CS0118: 'Configuration' is a 'namespace' but is used like a 'type'
Configuration myWebConfig = ...
0
votes
1answer
2k views
Using the WebConfigurationManager.OpenWebConfiguration() function using remote server and port?
Can someone tell me if there is a way for me to use the WebConfigurationManager.OpenWebConfiguration() using a remote server, port and virtual directory?
Examples cited in ...