<% OPTION EXPLICIT %> Κ <% ' This example creates a form with a drop-down %> <% ' menu. The user selects a page from the list and %> <% ' clicks GO! to move from page to page. Each time %> <% ' the user clicks GO! they are sent to a page named %> <% ' nav.asp where their selection is evaluated by a %> <% ' CASE statement. The CASE statement then %> <% ' redirects the user to the appropriate page. %> Κ <% SELECT CASE Request.Form("Category") %> <%ΚΚ CASE "Home" %> <%ΚΚΚΚ Response.Redirect "index.html" %> <%ΚΚ CASE "About Me" %> <%ΚΚΚΚ Response.Redirect "about_me.html" %> <%ΚΚ CASE "About HTML" %> <%ΚΚΚΚ Response.Redirect "about_html.html" %> <%ΚΚ CASE "About ASP" %> <%ΚΚΚΚ Response.Redirect "about_asp.html" %> <% END SELECT %>