Hi,
I have two radio buttons in a form and the outcome for each when clicked is different. I would like the user to make a selection, click submit, and it automatically goes straight to the correct page depending on which item they chose. If they click "credit card" I would like the user redirected to ccinfo.asp, etc. Is this possible and still be able keep it as a form to pass variables?
<form>
<input type=hidden name="fees" value="<%=request("fees"
%>">
<input type=radio name="payment" value="cc">Credit Card
<input type=radio name="payment" value="contact">Contact me
<input type=submit value=Submit> <input type=reset value=Clear>
</form>
Any help would be greatly appreciated. Thanks.
I have two radio buttons in a form and the outcome for each when clicked is different. I would like the user to make a selection, click submit, and it automatically goes straight to the correct page depending on which item they chose. If they click "credit card" I would like the user redirected to ccinfo.asp, etc. Is this possible and still be able keep it as a form to pass variables?
<form>
<input type=hidden name="fees" value="<%=request("fees"
<input type=radio name="payment" value="cc">Credit Card
<input type=radio name="payment" value="contact">Contact me
<input type=submit value=Submit> <input type=reset value=Clear>
</form>
Any help would be greatly appreciated. Thanks.