- Joined
- Nov 17, 2004
- Messages
- 64
- Reaction score
- 0
I'm trying to use Request.ServerVariables("AUTH_USER") to write the user name of the visitor on my page. The visitor had to input a username and password to gain access to the page. But the value for the auth user variable always comes up empty. What do I need to do to make this code give me the visitor's username?
Code:
<%
Response.Write "Hello" & Request.ServerVariables("AUTH_USER")
%>