I can connect to my sql server 2008 developer server using this in a sample code project:
string connection = @"data source=.\SQLSERVER2008;Integrated Security=SSPI;Initial Catalog=RSINET.MVC";
When I try updating the web.config file like so, I get a sql exception:
<add name="ApplicationServices" connectionString="data source=.\SQLSERVER2008;Integrated Security=SSPI;Initial Catalog=RSINET.MVC" providerName="System.Data.SqlClient"/>
The error that I get is this:
Verify that the instance name is correct and that SQL Server is configured to allow remote connections.
I am using the .NET provider?
matt