Just had the two buttons set the action :
<form name="myForm" method="post">
<input type="button" value="Save"
onclick="document.myForm.action='save.asp';documen t.myForm.submit();">
<input type="button" value="Continue" onclick="document.myForm.action='continue.pl';docu ment.myForm.submit();">
</form>
|