I have an asp page which has a dropdown box in it. Using the onchange event I want to decide whether to do something or not.
The event calls this javascript
<SCRIPT ID=clientEventHandlersJS LANGUAGE=javascript>
<!--
function HandleChange() {
var list = document.form1.seltest;
var listValue= list.options[list.selectedIndex].value;
}
//-->
</SCRIPT>
However how do I get the listvalue value and use it within the vbscript code to make the decision
The event calls this javascript
<SCRIPT ID=clientEventHandlersJS LANGUAGE=javascript>
<!--
function HandleChange() {
var list = document.form1.seltest;
var listValue= list.options[list.selectedIndex].value;
}
//-->
</SCRIPT>
However how do I get the listvalue value and use it within the vbscript code to make the decision