Good morning.
I have an ASP.Net site that is having session timeout issues, after 10 minutes. The site is www.mymartrainme.co.uk - the site is used to download training files. After a download has taken place (user has to validate themselves first) the user will read training material then return to site to download again. 10 mins not long enough.
The web.config has timeout specified as follows:
<authentication mode="Forms">
<forms timeout="50"/>
</authentication>
<sessionState timeout="60" />
I am guessing that the Application pool idle or recycle is overriding this. I don't think I can change the App Pool myself, but is it possible to have this 'upped'?
Thanks