Question

In my code behind page, how do I access the connection string which is stored in my web.config file?

Was it helpful?

Solution

System.Web.Configuration.WebConfigurationManager.ConnectionStrings["YouConnStringName"].ConnectionString;

This requires references to System.Configuration.dll and System.Web.dll.

OTHER TIPS

From comment on http://msdn.microsoft.com/en-us/library/ms178411.aspx

string c = System.Web.Configuration.WebConfigurationManager.ConnectionStrings["myconnectionstringname"].ConnectionString;

Requires your project to reference to System.Web and System.Configuration. I had to actually add a reference to "System.Configuration" not just add a Using.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top