I have to change from SQL Server authentication to Windows authentication:
My SQL Server authentication string is:
<add name="GCDataContext"
connectionString="Data Source=111.78.152.64;Initial Catalog=GC;User Id=sa;Password=xxxx;Trusted_Connection=False;Persist Security Info=True;MultipleActiveResultSets=True"
providerName="System.Data.SqlClient" />
Changed to (not working)
<add name="GCDataContext"
connectionString="Data Source=111.78.152.64;Initial Catalog=GC;Persist Security Info=True;Integrated Security=True;"
providerName="System.Data.SqlClient" />
Can anyone please help me on this?
Integrated Security=True is for Windows authentication, but the connection is not established.