This code only uses the second "action=" version and therefore the querystring("Skip")=Yes is not passed on,
rather than testing for the presence of the querystring variable. Where am I going wrong?
rather than testing for the presence of the querystring variable. Where am I going wrong?
Code:
<% If Request.QueryString("Skip")="Yes" Then %>
<form name="form1" method="get" action= "processform.asp?Skip=Yes" >
<% Else %>
<form name="form1" method="get" action= "processform.asp" >
<% End If %>