Can anyone help me out please? I\'m confused.
I want to set up my connection string so I can just call it from my Web.Config file.
I need a way to call it f
If you are using SQL Express (which you are), then your login credentials are .\SQLEXPRESS
Here is the connectionString in the web config file which you can add:
Place is just above the system.web tag.
Then you can call it by:
connString = ConfigurationManager.ConnectionStrings["nametoCallBy"].ConnectionString;