Session Timeouts
Hi guys,
In my JSP pages I use sessions and store and use attributes gathered from forms. Now lets say I leave a page idle for 10 mins and refresh I get instead of my jsp page an error page.
Now I understand this is because my session has run out. How would I go about if session runs out, say go back to page where the user had to enter form details ?
[371 byte] By [
Lunnya] at [2007-10-2 23:33:56]

Hi
You can direct to a page when ever the session expires. So you direct to the page which contains the form details in case of session time out.
For that include a jsp file (which will check for the existance of session and forward it to appropriate page in case of session expiary) on all jsp pages which needs to participate in session.
Regards,
Prasanth