May 11, 2006 #1 Ankor Programmer Joined Mar 21, 2002 Messages 144 Location US What can be an issue when Request.ServerVariables("LOGON_USER") does not return a value? I am running this on my web page, and get an empty string.
What can be an issue when Request.ServerVariables("LOGON_USER") does not return a value? I am running this on my web page, and get an empty string.
May 11, 2006 #2 Sheco Programmer Joined Jan 3, 2005 Messages 5,457 Location US The browser is not required to send this value. You can encourage it to be sent by disabling anonymous access and using windows authentication instead. Upvote 0 Downvote
The browser is not required to send this value. You can encourage it to be sent by disabling anonymous access and using windows authentication instead.
May 11, 2006 Thread starter #3 Ankor Programmer Joined Mar 21, 2002 Messages 144 Location US That was it! Thank you very much. Upvote 0 Downvote