Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么办法可以找出这个吗?这背后的原因:看起来 Request.IsAuthenticated 的有效期比我的应用程序中的会话长。
亲爱的,您必须将您的会员提供商配置为在会话超时事件后自动注销用户。你说你也在会话超时时间后得到 Request.IsAuthenticated 。
注意: 您可以在 global.ascx 文件的 Session_End 事件中捕获会话超时时间。您可以在此处强制注销您的用户。在成员资格提供程序中还有另一种配置用户活动空闲时间的方法。并且 asp.net 框架将在此空闲时间后自动注销用户。