Click to See Complete Forum and Search --> : Submitting ASP Forms without using a button


gav82
04-25-2003, 03:47 PM
Using VBScript, I have a form with a combo box which pulls its values from a db. I have a button which I use to submit this form.

I wish to remove the necessity for the button, by making it so the form is submitted if the selected value changes.

I have been trying to use 'onchange' in the select statement. I know that in php you can do something like

<select ...... onChange="this.form.submit();">

any ideas?