Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

IIS login putting username into variable

Status
Not open for further replies.

HebieBug

Programmer
Joined
Jan 8, 2001
Messages
354
Location
JP
Have some users that will login to a virtual site that is protected with a Windows 2000 username and password.
My aim is that once they enter their login details into the microsoft login then their username (if successful) will then show their unique page. It's not really unique but the username will be used in an SQL string which will display the current work they have outstanding.
Anyone know how I can do it?
 
You could try this for asp.

<%
Username=Request.ServerVariables(&quot;LOGON_USER&quot;)
%>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top