如何以编程方式刷新我的 ASP.NET 角色成员身份?
我正在使用自定义角色提供程序(由另一位开发人员编写),该提供程序使用我们的活动目录用户名(从 HttpContext.Current.User.Identity.Name 获取)以及 SQL 表。
无论如何,当我更新 SQL 表以更新我的角色时,我需要关闭我的 Web 浏览器 (Internet Explorer 7),以便我的新安全性生效。
我尝试过使用 Session.Abandon() 但这没有帮助。
如何刷新我的安全性?
理想情况下,我想要类似的东西:Roles.RefreshCurrent()
I'm using a custom role provider (written by another developer) that uses our active directory username (obtained from HttpContext.Current.User.Identity.Name) along with a SQL table.
Anyways, when I update my SQL table to update my roles I need to close my web browser (Internet Explorer 7) in order for my new security to become effective.
I've tried using Session.Abandon() but that doesn't help.
How can I refresh my security?
Ideally I want something like: Roles.RefreshCurrent()
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
删除角色 cookie 并强制回发。
http://msdn.microsoft.com/en-us/library/ms178195。 ASPX
Delete the roles cookie and force a postback.
http://msdn.microsoft.com/en-us/library/ms178195.aspx