Suddenly this morning I turned on my computer and launched visual studio... And no matter what I tried and whether I run or debug, and whatever the browser is ( chrome / fir
I had received a project where the webconfig had port number mentioned along with the server like this.
sqlConnectionString="Data Source=<>\SQLEXPRESS,<>;Initial Catalog=<>;Integrated Security=false;User Id=<>;PWD=<>;"
After removing the port number from connection string, the error message disappeared and code began to work.
sqlConnectionString="Data Source=<>\SQLEXPRESS;Initial Catalog=<>;Integrated Security=false;User Id=<>;PWD=<>;"
I am relative new to ASP.net. Dont know if this is going to cause problem elsewhere (^_^).