Choose a Web site


SOURCE CODE: for this page
<html><head><title>Redirect Form</title></head><body>
<h3>Choose a Web site</h3>
<form method="post" action = "282ln08redirect.asp">
   <select size = "1" name = "selectpage">
      <option value = "1">Course Technology</option>
      <option value = "2">Microsoft</option>
      <option value = "3">MSDN Online</option>
   </select>
   <input type="submit" value="submit">
</form>


SOURCE CODE: for the page this page POSTS to named 282ln08redirect.asp
<% response.buffer = "true" %>
<html><head><title>Redirect</title></head><body>
<%
select case request.form("selectpage")
   case 1
      response.redirect "http://www.course.com"
   case 2
      response.redirect "http://www.microsoft.com"
   case 3
      response.redirect "http://msdn.microsoft.com"
   case else
      response.redirect "sv.asp"
end select
%>
</body></html>