RE: if user's browser doesn't support Cookies, then where to store user's session information?

2010-01-12 Thread Looijmans, Mike
There's an option somewhere to put the session ID into the URL. You can store state information in the session. Be careful, a browser with two windows will share the session between the two windows, so that a user may get very confusing results when you store currentpage in the session.

Re: if user's browser doesn't support Cookies, then where to store user's session information?

2010-01-12 Thread Mark Thomas
On 12/01/2010 09:00, Peter Chen wrote: Hi, all I am using Tomcat 5.5.26 as the Web Server. I know the session information is stored in Cookies with the key JSESSIONID. But some browsers don't support Cookies. So my question is if user's browser doesn't support Cookies, then where to

Re: if user's browser doesn't support Cookies, then where to store user's session information?

2010-01-12 Thread Pid
On 12/01/2010 09:00, Peter Chen wrote: Hi, all I am using Tomcat 5.5.26 as the Web Server. I know the session information is stored in Cookies with the key JSESSIONID. Only the id is stored in the cookie. But some browsers don't support Cookies. So my question is if user's browser doesn't