Is it possible to call a VBScript function and a JavaScript function for the same event?
When I submit a form I want the VbScript function toexecute then the JavaScript. Please refer to the code below. Any help appreciated.
Code:
<Script language='javascript'>
Function validate()
{
return true;
}
</Script>
<Script language='vbcript'>
function frm_onsubmit()
End Function
</Script>
<form name=frm method='post'....>
........
<type=submit onsubmit='return validate()'>
</form>
When I submit a form I want the VbScript function toexecute then the JavaScript. Please refer to the code below. Any help appreciated.
Code:
<Script language='javascript'>
Function validate()
{
return true;
}
</Script>
<Script language='vbcript'>
function frm_onsubmit()
End Function
</Script>
<form name=frm method='post'....>
........
<type=submit onsubmit='return validate()'>
</form>