ASP.NET 以其他人身份进行身份验证
我即将开发一个 ASP.NET MVC 3 站点,其中有两种不同类型的用户:全局管理员和本地管理员。
本地管理员可以管理自己的数据。全局管理员可以选择本地管理员并“模拟”该用户。我的意思是,他最好能够看到相同的观点等。
您对如何实施这种行为有何想法?
此致 肯尼思
I am about to develop an ASP.NET MVC 3 site where there will be two different kinds of users: Global Administrator and Local Administrator.
A local administrator can administrate his own data. The global administrator can select a local administrator and sort-of "simulate" being that user. By this, I mean that he shoud preferably be able to see the same views etc.
What are your thoughts on how this behavior could be implemented?
Best Regards
Kenneth
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用表单身份验证,您可以模拟任何用户:
您也可以想要将一些信息存储到会话中,这将表明用户实际上是管理员,但充当全局管理员(如果您需要此类功能)。
If you are using forms authentication you could impersonate any user:
You might also want to store some information into the session which would indicate that the user is in fact an administrator but acting as a global administrator (if you need such functionality).