So I'm trying to set up a connectionstring in ASP.NET to connect to a SQL Server. I've got the servername and that's the structure I'm currently using.
<add name="CRMSQL" connectionString="Data Source=servername\Instance;Initial Catalog=crm;User ID='CRM';Password='****';Integrated Security=True" providerName="System.Data.SqlClient" />
I know that the username and the password are right and for the Servername I use something like U444324.And as the instance name I use the name which pops up when I execute:
SELECT @@servername
What are possible sources of error?
Data Sourceexact what you have in theServer Namefield of theConnect to Serverwindow