标签: .net vb.net web-services .net-3.5 asmx
在我的服务器端页面(内部网环境)上,我使用以下代码找出哪个用户正在使用该页面:
Request.ServerVariables("LOGON_USER")
如何在webservice(asmx文件)中使用该命令?当我收到Request is not declared。
Request is not declared
答案 0 :(得分:5)
使用HttpContext.Current.Request.ServerVariables ...
HttpContext.Current.Request.ServerVariables