Greetings.
I have been investigating the following error that appears to me when running a web page that I am programming in VS2013
Server error in the application '/'.
Error related to the network or specific to the instance while established a connection to the SQL Server. The server or this one was not accessible. Check that the name of the instance is correct and that SQL Server is configured to support remote connections. (provider: SQL Network Interfaces, error: 26 - Error searching the specified server or instance)
Among the answers and information I found, it tells me to check the SQL services, the connections (TCP / IP & Named pipelines), the connectionString.
Of all that: * Services are running (including the SQL Browser) * The services of the two instances that I have are running * TCP / IP connections are enabled and with port 1433 configured * The connection string I have declared it in the following ways
<add name="ServProd" connectionString="Data Source=192.168.54.86\TR; Initial Catalog=db; User ID=sa; Password=******;" providerName="System.Data.SqlClient" />
<add name="ServProd" connectionString="Data Source=ambientePROD\TR; Initial Catalog=db; User ID=sa; Password=******;" providerName="System.Data.SqlClient" />
and none of the two ways has worked.
The firewall is configured to allow connections. Even previous pages and applications have no problems connecting to the bases of that server, but this specific development is having this problem.
Any detail that I have skipped checking in code or configuration?
Thanks for your time.