I can't connect via ASP.NET to a named instance of a sql server, that itsn't the default instance. My servername is NAMEOFSERVER\NAMEOFINSTANCE.
If I try to connect to the default instance of the server, it works.
I use the following connection string:
connection_string = "Data Source=" + servername + ";Initial Catalog=" + db_catalog + ";User Id=" + user + ";Password=" + password + ";persist security info=False;Trusted_Connection=No;Connection Timeout=1000"
The SQL Server Browser service is running.