> The form:
> <form method="post" action="response.jsp?name=value">
> <input type="submit" value="Hello">
> </form>

  Don't put parameters in the action, name your <input> field and you'll get
what you need:

<form method="post" action="response.jsp">
<input type="submit" name="value" value="Hello">
</form>

POSTing will automatically add a parameter to the request for each <input>
field between <form> & </form>
  Check the RFCs (www.ietf.org) for more details.

Franck Mangin



----------------------------------------------------------------
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Archives and Other:  <http://java.apache.org/main/mail.html/>
Problems?:           [EMAIL PROTECTED]

Reply via email to