Dear Katriona,<br><br>The simplest way to accomplish that is to not have an input element of type 'submit' in the form. Obviously you need another mechanism to submit the form like an input type of 'button' with an onclick() handler.<br><br>"But, that's just my opinion... I could be wrong".<br>-pete
To illustrate what Pete said:<br><br><html><head><br><script language='javascript'><br>function submitme(){<br>document.forms[0].submit();<br>return true;<br>}<br></script><br></head><br><body><br><form action="mypage.asp" method="post"><br><input type="button" value="Submit" onclick="return submitme()"><br><br>NOTE: the 'return' in the onclick handler is important.<br></form></body></html> <p>nick bulka<br><a href=mailto: > </a><br><a href= > </a><br>
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.