I have a website where I need to fetch data from a SQL Server 2008 R2 database. But I'm getting an error
Login failed for user 'domain\Username'
I googled for it then I get that to change property of SQL Server -> Properties -> Security -> Server authentication to SQL Server and Windows authentication mode only I'm still getting the same error. I don't want to use ID and password in connection string
My connection string:
<add name="ConnectionString"
connectionString="Data Source=servername;Initial Catalog=databasename;Integrated Security=True"
providerName="System.Data.SqlClient" />
Please help me.