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 ...
1
vote
1answer
95 views

WAP + NUnit + WebConfigurationManager Pin

I just started using NUnit to write test cases for my asp.net web application project. Some of the code written to access database values fetches the ConnectionString from a "section" defined under ...
0
votes
0answers
28 views

Using WebConfigurationManager.OpenWebConfiguration with local IIS7

A long while ago I created a C# .net web page that accepts some input for site name, server name etc. which is used to encrypt sections of a web.config in the target site. The live sites are hosted ...
0
votes
0answers
18 views

get configuration object from url

Is there a way to get the Configuration object out of the web context? This is a Sharepoint custom timer job (so I can't use HttpContext, Request, etc).. I have the url of my web, and I want to ...
0
votes
1answer
215 views

Extracting contents of ConnectionStrings in web.config in Silverlight Business application

I am trying to read dataSource ad Catalog from <connectionStrings> in web.config in Silverlight business project. Unfortunately when I used SqlConnectionStringBuilder, I could not read ...