|
欢迎来到月影社区!如果您觉得这里不错,请推荐给您的朋友们。月影社区:http://wf66.com/ |
Retrieve the NT user name
|
|
Retrieve the NT user name on an intranet. Strips the domain name from the returned string.
Retrieve the NT user name on an intranet. Strips the domain name from the returned string.
'**************************************
' Name: NT User Name
' Description:Retrieve the NT user name
'on an intranet. Strips the domain name f
'rom the returned string.
' By: Joe McDonnell
'
'This code is copyrighted and has' limited warranties.Please see http://w
'ww.Planet-Source-Code.com/xq/ASP/txtCode
'Id.6689/lngWId.4/qx/vb/scripts/ShowCode.
'htm'for details.'**************************************
You can easily Get the NT logon name For a user by using:
user=request.servervariables("logon_user") OR
user=request.servervariables("remote_user")
This will return a String like "mydomain/myname"
You can Get just the user name by using INSTRREV. Where INSTR returns the position of the first search character INSTR will return the last. Your code will be something like:
<%
MyVar=request.servervariables("logon_user")
MyPos = InstrRev(MyVar, "/", -1, 1)
UserName=Mid(MyVar,MyPos+1,Len(MyVar))
%>
You can also use this To return file names from paths etc.Retrieve the NT user name |
[ 1 ] |
|
Retrieve the NT user name num |
【打印本页
关闭】 |
|