W
Willie
Hi All;
I have a form with multiple buttons and I would like to disable the buttons
after the user clicks on the button to prevent multiple submitions.
<input type="submit" name="return1" value="Send To MFG" id="return1"
onClick='this.disabled=true;this.form.submit()' >
This works but I do not get the return1 value passed to the action script as
I do if I just have :
<input type="submit" name="return1" value="Send To MFG" id="return1" >
I need this vale to be know which button was pushed. Is there a way of
passing a value with the form.submit() ?
Thanks
Willie
I have a form with multiple buttons and I would like to disable the buttons
after the user clicks on the button to prevent multiple submitions.
<input type="submit" name="return1" value="Send To MFG" id="return1"
onClick='this.disabled=true;this.form.submit()' >
This works but I do not get the return1 value passed to the action script as
I do if I just have :
<input type="submit" name="return1" value="Send To MFG" id="return1" >
I need this vale to be know which button was pushed. Is there a way of
passing a value with the form.submit() ?
Thanks
Willie