在我的服务器端页面(intranet环境)上,我使用以下代码来找出哪个用户正在使用该页面:
Request.ServerVariables("LOGON_USER")如何在use服务(asmx文件)中使用该命令?我不能使用上面的行,因为我收到一条消息说Request is not declared。
发布于 2011-08-04 18:26:25
使用HttpContext.Current.Request.ServerVariables...
https://stackoverflow.com/questions/6939732
复制相似问题