Hi all,
I know that because the session resides on the server javascript is client, storing javascript in the session does not make sense. However, here is my situation ...
I have a value passed into a javascript function on a
jsp page. This is a comma delimted
string which could potentially be very very long. I need to pass it to another jsp page. The previous design, which I am correcting, sets the long string as a parameter of a form that gets submitted. However, when the string is x characters long or greater, the info will not be passed and we will end up with a blank white screen. Therefore, it can not be part of the form as it is now because x characters or greater is allowable in our situation. That is why I would like to put it in the session so that I can scoop it up on the next jsp page. Any ideas?