根据 ASP.NET 中的角色设置 auth cookie 超时长度
我想让管理员登录的时间比普通用户长。我没有看到以编程方式或基于角色的方式设置 cookie 超时的钩子。在使用表单身份验证的 ASP 中这可能吗?
I want to allow admins to be logged in for longer than normal users. I don't see a hook for setting the cookie timeout programmatically or in a role-based way. Is this possible in ASP using Forms Authentication?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,你可以这样做。您需要手动生成身份验证票证,而不是让框架自动生成它。
根据用户角色,您分配给票证的到期时间。
本教程介绍如何手动生成票证。
Yes, you could do that. You would need to generate the authentication ticket manually instead of letting the framework generate it automatically.
Depending the user role, the expiration you assign to the ticket.
This tutorial show how to generate the ticket manually.
片段:
SNIPPET: