posted 22 years ago
1) Put method="post" on your form tag to prevent the data from being passed as part of the URL.
2) Use the on_submit (remove underscore) handler to cause a JavaScript function to execute when the form is submitted. This function can manipulate the content of your form fields to your heart's content. Be sure to return true from your function.
Example:
(remove underscore)
hth,
bear
P.S. Returning false from the method prevents the form from being submitted and so is a good way to perform validation.
[ November 04, 2002: Message edited by: Bear Bibeault ]