Hello All,
I am using Visual Studio 2010 to develop an ASP.NET application and need to support Forms authentication and Windows authentication together(I mean user have an option to select any of them). In case of windows authentication, it should be integrated(means
should not need the user name and password to be entered by the user). I found below articles towards to support this model
http://msdn.microsoft.com/en-us/library/ms972958.aspx
http://blog.aaron-milam.com/2009/03/combining-windows-authentication-with.html
As per this approach I created a sample, but inside my windows login page, I am not able to get the windows users credentials and it is always empty string. I am using IIS7.5 in Windows 7 Enterprise Edition. My web.config is like below
<configuration>
<system.web>
<compilation de ...
Go to the complete details ...