Originally posted by srinath rammohan:
so u mean to say that with out the query string i can not send variables from javascript to jsp.
They need not be in the query string if you use a POST request as opposed to a GET. In other words, a hidden variable in a form as mentioned above.
POST request parameters are sent in the request header. Cookies are also sent in the header and would be hidden as well.
Any of these methods would serve the purpose of sending your data to the server with the HTTP request.
- Peter