我有一个网络应用程序。我想检查登录用户是否具有用于登录Web应用程序的客户端计算机的管理员权限
我尝试使用以下方法
HttpContext.Current.User.Identity.Name;
HttpContext.Current.Request.LogonUserIdentity.Name;
HttpContext.Current.Request.ServerVariables["REMOTE_USER"];
HttpContext.Current.User.IsInRole("Administrator");
但是所有内容都返回了网络服务帐户的详细信息,但我需要客户端的权限信息
谢谢, 谢林