I have a project by someone else and there is this line of code:
ConnectionStringSettings myConnectionStringSetting = ConfigurationManager.ConnectionStrings[0];
which for some reason returns this:
ConfigurationManager.ConnectionStrings[0] is returning {data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true} System.Configuration.ConnectionStringSettings
I don't have selexpress installed to my knowledge and my web.config points to my server using a different connection string. Where do I find the list of all the connection strings in VS 2010?
Doing an find on the entire solution returns no results for sql express either.