我需要在我的web.config中添加session timeOut,但是不行。
我在web.config的标签中写入,将超时设置为30分钟,(错误?)
'<sessionState timeOut="30"/>'
我正在使用VS 2008和framework .net 3.5。
我可以帮助我吗?
答案 0 :(得分:0)
您使用的是表单身份验证吗?这适用于表单身份验证。
<authentication mode="Forms">
<forms timeout="40"/>
</authentication>
另外,请确保在web.config中匹配正确的大小写。
'<sessionState timeOut="30"/>'
应该是
<sessionState timeout="30"/>