会话超时后,asp.net 注销链接已更改
我使用了asp.net的loginstatus控件, 应用程序的会话超时后, 注销链接更改为登录。
i used the loginstatus control of the asp.net,
after the session timeout, of an application,
the logout link changed to login.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的会话超时和表单 cookie 超时设置为相同的值,这是预期的行为。您应该更改“表单”部分中的超时来更改此...
cookieless="[UseUri|UseCookies|AutoDetect|UseDeviceProfile]"
域=“域名”
TicketCompatibilityMode="[Framework20|Framework40]">
This is an expected behavior if your session timeout and forms cookie timeout is set to same value.You should change the timeout in the 'forms' section to change this...
<forms
name="name"
loginUrl="URL"
defaultUrl="URL"
timeout="[MM]"
path="path"
requireSSL="[true|false]"
slidingExpiration="[true|false]">
enableCrossAppRedirects="[true|false]"
cookieless="[UseUri|UseCookies|AutoDetect|UseDeviceProfile]"
domain="domain name"
ticketCompatibilityMode="[Framework20|Framework40]">
</forms>