Rank: Member Groups: Member
Joined: 3/29/2009 Posts: 29
|
Hi, A question about the Ajax uploader and session timeout at the webserver. We are getting timeouts to the users session when they upoad very large files that may take several hours to upload. Is the Ajaxa uploader progress s/w designed to keep the session alive or do we have to set the session active time at the webserver to be several hours? tar.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
The uploader does not do anything special to keep session alive. So if you have upload that goes for several hours, you may need to add extra coding to handle it. The easy way is to set session active time to several hours; another way is to change your code to correctly handle session time out case. For example, you can store the current user information in ViewState and then restore it when times out occurs.
Thanks!
|