标签: asp.net-mvc visual-studio
我想知道是否有一种方法可以调用isUserInRole方法,例如" ifUserIsNotInRole"或类似的东西
isUserInRole
这是我尝试做的事情,但与此相反。
@if (User.IsInRole"(Member")) { }
答案 0 :(得分:2)
if (!User.IsInRole('otherrole'))?
if (!User.IsInRole('otherrole'))