\'ve installed SQL Express on my PC hoping to do some practice creating tables and then modifying them. I coded a webpage in Visual Studio to, basically, SELECT * from a tab
If you are placing your data connection string in a web.config file you specify your connection like below:
but if you are hard coding within a c# based website you have to escape the '\' back slashes:
"Data Source=.\\\\SQLEXPRESS;Initial Catalog=Northwind;Integrated Security=True"
Even Scott Hanselman can forget this...