vote up 1 vote down star

I have a three tier set-up. Someone suggested I should get the ConnectionString from the Web.Config file and I've got it set up like this:

alt text

Now I'm trying to access the ConnectionString from my DAL tier, but I can't find the ConfigurationManager. How can I invoke my Connection string from here?:

alt text

flag

1 Answer

vote up 3 vote down check

Add a reference to System.Configuration, then have a using class for System.Configuration, then you will have access to:

ConfigurationManager.ConnectionStrings

And yours can be accessed via

string s = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.