首页 | 免费域名 | 个人服务器 | 一流信息监控拦截系统 | 虚拟主机知识库 | ASP 空间 | ASP技术大全 | 下载中心 | 客户服务中心
  7i24 > ASP技术大全 > 代码乐园 >
    7i24 .Com  
  Retrieve the NT user name

7i24.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.



  2002年1月9日  阅读 771 次  发送此页给朋友  来源:    版权争议  删除

相关文章:   近期热点:

上一篇: 在ASP应用中如何限制同一表单被多次提交
下一篇: 获取服务器的当前日期函数,返回的日期格式为"YYYY-MM-DD"
返回上一层...
搜索:

(C)2004-2022 7i24.Com 保留所有权利