ASP.net 是用户角色
我无法弄清楚如何快速找出角色中的用户名是/否吗?我已经得到了:
Roles.FindUsersInRole("Admin", usersName)
但是我有点卡住了,有什么简单的方法可以做到这一点吗?
I'm having trouble working out how to quickly find out yes/no is a username in a role? I've gotten as far as:
Roles.FindUsersInRole("Admin", usersName)
But am a bit stuck, any easy way of doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
下面的内容根据指定用户是否属于指定角色返回 true 或 false
因此,例如,如果您想从特定角色中删除用户,您可以使用
The below returns true or false depending on if the specified user is in the specified role
So, for example, if you wanted to remove a user from a specific role you could use
有一个更好的方法
There is a better way just with