Answers:
它取决于配置或程序更改。
因此,检查当前值的最可靠方法是在运行时通过代码。
请参见HttpSessionState.Timeout属性;默认值为20分钟。
您可以通过HttpContext在ASP.NET中访问此属性:
this.HttpContext.Session.Timeout // ASP.NET MVC controller
Page.Session.Timeout // ASP.NET Web Forms code-behind
HttpContext.Current.Session.Timeout // Elsewhere
默认值为20分钟。 http://msdn.microsoft.com/zh-CN/library/h6bb9cz9(v=vs.80).aspx
<sessionState
mode="[Off|InProc|StateServer|SQLServer|Custom]"
timeout="number of minutes"
cookieName="session identifier cookie name"
cookieless=
"[true|false|AutoDetect|UseCookies|UseUri|UseDeviceProfile]"
regenerateExpiredSessionId="[True|False]"
sqlConnectionString="sql connection string"
sqlCommandTimeout="number of seconds"
allowCustomSqlDatabase="[True|False]"
useHostingIdentity="[True|False]"
stateConnectionString="tcpip=server:port"
stateNetworkTimeout="number of seconds"
customProvider="custom provider name">
<providers>...</providers>
</sessionState>
int check = this.HttpContext.Session.Timeout;
但是我可以用键设置会话超时吗?检查会话超时像特别关键:Session["mykey"]
?