2

我有一个网络应用程序。我想检查当前登录的用户在他用来登录 Web 应用程序的客户端计算机上是否具有管理员权限

我尝试过使用以下方法

          HttpContext.Current.User.Identity.Name;
          HttpContext.Current.Request.LogonUserIdentity.Name;
          HttpContext.Current.Request.ServerVariables["REMOTE_USER"];
          HttpContext.Current.User.IsInRole("Administrator");

但是一切都返回网络服务帐户详细信息,但我需要客户端的权限信息

谢谢,谢林

4

0 回答 0