ASP URL Redirection
URL Redirection
<%
if Request.Form("select")<>"" then
Response.Redirect(Request.Form("select"))
end if
%>
<html>
<body>
<form action="?" method="post">
<input type="radio" name="select" value="file1.asp">Example 1<br>
<input type="radio" name="select"value="file2.asp">Example 2<br>
<input type="submit" value="Go!">
</form>
</body>
</html>