<%
if Request.Form("select")<>"" then
Response.Redirect(Request.Form("select"))
end if
%>
<html>
<body>
<form action="/example/aspe/demo_aspe_redirect.html" method="post">
<input type="radio" name="select"
value="/example/aspe/demo_aspe_server.html">
服务器实例<br>
<input type="radio" name="select"
value="/example/aspe/demo_aspe_text.html">
文本实例<br><br>
<input type="submit" value="跳转!">
</form>
</body>
</html>