使用此web.config元素设置会话状态超时
<sessionState mode="InProc" cookieless="false" timeout="120" />
窗体auth使用此web.config元素配置
<system.web> <authentication mode="Forms"> <forms loginUrl="Login.aspx" protection="All" timeout="30" name=".ASPXAUTH" path="/" requireSSL="false" slidingExpiration="true" defaultUrl="default.aspx" cookieless="UseDeviceProfile" enableCrossAppRedirects="false" /> </authentication> </system.web>
在每个元素中指定的超时之间有什么区别?如果两者都不同,它将如何工作?