briancostea
Programmer
Does any one know why I cannot use Request.Form in a SBScript function? I am trying to set a session variable.
<input type="button" class="goButt" value="GO" onClick="DoStart()"></input>
<script language=VBScript>
<!--
function DoStart()
<%session("sub") = Request.Form("lstExperts")%>
parent.right.location.HREF="showExp.asp"
end function
//-->
</script>
this redirects the page, but the session variable is not set.
<input type="button" class="goButt" value="GO" onClick="DoStart()"></input>
<script language=VBScript>
<!--
function DoStart()
<%session("sub") = Request.Form("lstExperts")%>
parent.right.location.HREF="showExp.asp"
end function
//-->
</script>
this redirects the page, but the session variable is not set.