I have create a asp.net application and using windows authentication. I deployed this application to IIS 7.5(my computer). When I visit my application on another computer, below SQL Exception has thrown when I query data from SQL Server: System.Data.SqlClient.SqlException: Login failed for user '\'.
Then I add following configuration item to the web.config solved this issue.
<identity impersonate="true" password="<password>" userName="<domain>\<username"/>
But I'm wondering is there another solution to solve my problem? I have googled much time but not found any answer. Could anybody can help me with this issue or give me some guide? Any help is appreciated.
Thanks in advance!
Sven