User name

  • Thread starter Thread starter tony wong
  • Start date Start date
T

tony wong

i have a VB script to run by client to show its logon client name.

i wish to make a asp page to show up the logon user name.

how can i make IIS know the client user name?

any hints or reference? Thanks a lot.

tony
 
This isn't really the correct forum for ASP stuff, but you would want to make
the page require authentication (no anonymous access) and set it to use
integrated authentication (so that the user is not prompted for a password).
Now when the user goes to the page they are actually logging into the IIS
server with same username they logged into their computer with. Uour APS
page can call a server property (don't remember the exact name) to get the
username from IIS.
 
Thanks sphbecker

sphbecker said:
This isn't really the correct forum for ASP stuff, but you would want to
make
the page require authentication (no anonymous access) and set it to use
integrated authentication (so that the user is not prompted for a
password).
Now when the user goes to the page they are actually logging into the IIS
server with same username they logged into their computer with. Uour APS
page can call a server property (don't remember the exact name) to get the
username from IIS.
 
Back
Top