How do I pass parameters or variables from asp into vbscript? for example, the code below does not run as expected
<%
call myproc(a,b)
%>
<script language="VB\Script">
function(a,b)
msgbox a
msgbox b
end function
</script>
the message boxes displays blank. I hope someone could guide me. Thanks in advance.
<%
call myproc(a,b)
%>
<script language="VB\Script">
function(a,b)
msgbox a
msgbox b
end function
</script>
the message boxes displays blank. I hope someone could guide me. Thanks in advance.