I am just starting to learn ASP.NET. I opened a default ASP.NET application and changed the web.config file to enable Windows authentication.
<authentication mode="Windows">
</authentication>
When I run from VS using the asp.net development server, it is able to detect my windows login and display it. I tried publishing it to the IIS server 7.5 in the same PC and ran from there. Now my windows login is not getting detected. I have enabled the Windows Authentication from the Authentication feature in IIS. What else I might be missing in this case?
Thanks..