I am trying to get the most basic of things accomplised: get a vbscript sub to give me a msgbox. I am trying to call the sub from a selectbox. I keep getting nothing and it is driving me nuts! The code is below.
<SCRIPT LANGUAGE="VBScript">
Sub ez_onchange
msgbox "hello"
End Sub
</script>
<select name=ez>
<option value="">Please Select</option>
<option value="1">1</option>
<option value="2">2</option>
</select>
<SCRIPT LANGUAGE="VBScript">
Sub ez_onchange
msgbox "hello"
End Sub
</script>
<select name=ez>
<option value="">Please Select</option>
<option value="1">1</option>
<option value="2">2</option>
</select>