A
Amar
My IIS is on domain. I try to use Windows authentication for ASP.net
web site. I try to get client name (DOMAIN/user). My IIS have
anonymous access turned off and Integrated Windows authentication
turned on.
In ASP.NET application in web config.
<authentication mode="Windows"/>
<identity impersonate="true" />
<authorization>
<deny users="?"/>
</authorization>
and i have Dim name As String = Page.User.Identity.Name
but every time when domain user go to this web page get message box
with authorization code.
web site. I try to get client name (DOMAIN/user). My IIS have
anonymous access turned off and Integrated Windows authentication
turned on.
In ASP.NET application in web config.
<authentication mode="Windows"/>
<identity impersonate="true" />
<authorization>
<deny users="?"/>
</authorization>
and i have Dim name As String = Page.User.Identity.Name
but every time when domain user go to this web page get message box
with authorization code.