We've got a ASP.net web app with a few pages that occasionally time out as the page loads (generally, these are all admin-type pages that do bug uploads / downloads with processing.)
One of the solutions has been to bump both Session.Timeout and Server.ScriptTimeout up to very large numbers - which works fine. However, there's quite a bit of discussion here about when each setting applies. To put it mildly, the MSDN pages are open to interpretation.
Can anyone give me the reader's digest version of what the difference is, or point me to the MSDN page we couldn't find?
Thanks, all.
(.net 2.0 on II6, if it matters.)
As a bonus follow-up question, does changing those settings in, say, a given page's on_load() function change them for the whole app, or just that page?
Edit: whoops! I meant "Session.Timeout" not "Server.Timeout."