asp.net 成员资格 - 如何以编程方式确定用户是否处于角色
确定用户是否处于某个角色的代码是什么?
我已经通过 ASP.NET 配置安全选项卡设置了所有用户,但现在想要围绕一些关键区域放置逻辑,以便只有特定角色的人员可以查看和访问这些区域。
What is the code for determining if a user is in a role?
I have set up all the users through the ASP.NET Configuration Security tab but now want to put logic around some key areas so only people in certain roles can see and access these areas.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
简单~
Easy~
查看 Roles 类,特别是 IsUserInRole 、GetUsersInRole、AddUserToRole 等。
我一直使用这些。
Check out the Roles class, specifically IsUserInRole, GetUsersInRole, AddUserToRole, etc.
I use these all the time.
感谢“克里斯·范·奥普斯塔”。 我这样解决了我的问题,
thanks to "Chris Van Opstal". i solved my problem like this way,