User.IsInRole 错误
我在 Site.Master.cs
的 Page_Load
中有这段代码。
if(User.IsInRole("Read"))
{
NavigationMenu.Visible = false;
}
我收到此错误:
非静态字段、方法或对象需要对象引用 财产 'Microsoft.VisualBasic.ApplicationServices.User.IsInRole(字符串)。
有什么线索吗?
I have this code inside the Page_Load
of the Site.Master.cs
.
if(User.IsInRole("Read"))
{
NavigationMenu.Visible = false;
}
and I get this error:
An object reference is required for the non-static field, method, or
property
'Microsoft.VisualBasic.ApplicationServices.User.IsInRole(string).
Any clues?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以获取当前的 HttpContext 用户 并使用 IsInRole 方法如下。
HttpContext.Current.User.IsInRole("Read")
将方法更改为
You can get current HttpContext user and validate for given role using IsInRole method as below.
HttpContext.Current.User.IsInRole("Read")
Change your method as
看起来您正在使用该类而不是该类的实例尝试:
Looks like you are using the class instead an instance of that class try:
我不完全同意这个答案。您将从母版页中的
Page
属性获取User
实例,因此您应该使用:I don't fully agree with the answer. You are getting the
User
instance from thePage
property in your master page, so you should use: