我在 4.0 框架中构建的 ASP.Net Web 应用程序存在问题。我在网络配置中设置了以下内容 -
<authentication mode="Forms">
<forms loginUrl="~/SignIn.aspx" protection="All" timeout="2880" path="/" />
</authentication>
当用户点击我的网址时,他会看到登录页面。现在会话超时设置为IIS的默认会话超时,即20 分钟。现在,当会话到期时,我想强制用户重定向到Logout.aspx
我怎样才能做到这一点?一旦会话超时,我想将用户重定向到 Logout.aspx 页面。