认证 – asp.net mvc 3:Page.User.IsInRole(“xy”)返回null

前端之家收集整理的这篇文章主要介绍了认证 – asp.net mvc 3:Page.User.IsInRole(“xy”)返回null前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我迁移了一个mvc 2应用程序到版本3.

不幸的是,在我的部分登录文件中,用户登录时会抛出异常.Request.IsAuthenticated返回true,但Page.User返回null!

而且当然

Page.User.IsInRole( “XY”)

抛出异常:
Microsoft.CSharp.RuntimeBinder.RuntimeBinderException:无法对空引用执行运行时绑定

如何使用Razor检查用户角色?

解决方法

通过查看默认的mvc3项目找到解决方案:
Context.User.IsInRole("xy")

而不是Page.User.IsInRole(“xy”)

原文链接:https://www.f2er.com/aspnet/245842.html

猜你在找的asp.Net相关文章