我迁移了一个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