
How to capture user's NT login?
You have to disable anonymous access in your directory in IIS and enable
integrated authentication.
http://www.google.com/search?q=how+enable+integrated+authentication+iis
Ray at home
Quote:
> Thanks for the reply. I forgot to tell you that I tried
> the:
> Response.Write Request.ServerVariables("LOGON_USER")
> and the display as blank. Do you know why?
> Thanks.
> simon.
> >-----Original Message-----
> >> Hello All,
> >> I am working on an intranet application using ASP 3.0
> and
> >> VBScript, and I don't know how to capture the user's NT
> >> login for authentication.
> >> Since ASP runs on the server, I probably need something
> to
> >> run on the client side for this task.
> >Nope - server-side code:
> ><%
> >response.write request.servervariables("LOGON_USER")
> >%>
> >HTH,
> >Bob Barrows
> >.