I would like to connect to SQL Server with integrated Security in an intranet Asp.net page.
<system.web>
<authentication mode="Windows"/>
<authorization>
<deny users="?"/>
</authorization>
<identity impersonate="true" />
</system.web>
My web page connects properly from localhost directly on the web server to SQL server.
If I run the web page from my browser on my workstation I get the error message
Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'.
I use .net 2.0 and a classic App pool. Windows Authenicattion is enabled
What am I doing wrong?
Go to the complete details ...