I am using a db from (localdb)\V11.0 server and able to connect successfully when using IIS express from VS2013, but when deployed in LocalIIS, it gives me an error below -
A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible.
In order to fix that I have updated applicationHost.config
file as below
<add name="DefaultAppPool">
<processModel identityType="ApplicationPoolIdentity" loadUserProfile="true" setProfileEnvironment="true" />
</add>
Now, though database is not connected, it has displayed a home page, but all data-driven dropdown values are empty. I have also tried changing Application pool
to LocalSystem
but website unable connect db. Is there any specific area that I need to investigate?