我坚持在 Windows 2008 R2 Datacenter 的 IIS 6.1 上增加 asp.net 2.0 中网站的超时。
thx 提前寻求帮助...
我坚持在 Windows 2008 R2 Datacenter 的 IIS 6.1 上增加 asp.net 2.0 中网站的超时。
thx 提前寻求帮助...
如果您使用 ASP.NET 2.0 的 sessionState 属性,那么您可以timeout
在 web.config中调整
<sessionState
mode="InProc"
stateConnectionString="tcpip=127.0.0.1:42424"
stateNetworkTimeout="10"
sqlConnectionString="data source=127.0.0.1;Integrated Security=SSPI"
sqlCommandTimeout="30"
customProvider=""
cookieless="UseCookies"
cookieName="ASP.NET_SessionId"
timeout="20" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< HERE
allowCustomSqlDatabase="false"
regenerateExpiredSessionId="true"
partitionResolverType=""
useHostingIdentity="true">
<providers>
<clear />
</providers>
</sessionState>