我希望该应用程序在会话过期后自动注销,但这似乎不起作用。
这是我的web.config(为进行测试,我定义了1分钟的会话超时)
<sessionState timeout="1" />
<authentication mode="Forms">
<forms loginUrl="~/Login/Index" timeout="1" />
</authentication>
一旦我在登录控制器中验证了用户身份,就设置
FormsAuthentication.SetAuthCookie(username, true);
并重定向到Home控制器。
闲置1-2分钟,我想让应用进入登录屏幕,但那没有发生。
我想念什么吗?
谢谢