asp.net - Session timeout web.config -


i've set timeout of application 540 follows:

<system.web>     <authentication mode="none" />     <sessionstate timeout="540" />     <customerrors mode="off" />     <compilation targetframework="4.5" debug="true" />     <pages controlrenderingcompatibilityversion="4.0" /> </system.web> 

the iis timeout set 20 (i can't touch part it's on shared-server).

everytime run application disconnected after 20 minutes, assume it's due iis timeout.

how can override iis timeout fit web.config timeout? on computer (where have control on iis timeout), it's working good, not on server.

thank all.


Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -