> -----Original Message-----
> From: A mailing list about Java Server Pages specification
> and reference
>
> I have a <A Href="test.jsp?name=Mike&age=22&gender=M&  ..... " >
> The string accompaning the Anchor is ver large say about 500
> characters. When
> the user clicks on this it goes as a GET. I want to use POST.
> Since POST does
> not have any limitations on the size of data that can be
> sent. Can I do this

You can use a form instead, set the METHOD attribute to "POST" and make each
of your parameters hidden form fields. You will have to change your text
link to a form button, unless you use JavaScript to submit the form from the
link.

HTH,

Steve S

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html

Reply via email to