I am trying to put a dropdown menu to let the user select where they want to go, and then click on the button to go there. I think I know why this isn't working, but I can't figure out how to do it.
Quote:
<html><head><body>
<%
dim unclink
unclink=request.querystring("unclink")
%>
<form mehtod="get" action=" <% response.write(unclink) %>" class="menu">
<select title="UNC Directory" name="unclink" id="unclink" style="width:150px" class="layoutMenu">
<option value="http://www.unco.edu/dss/uncdirectory3.asp" selected> -UNC LINKS-</potion>
<option value="http://www.unco.edu/" >UNC HOME</option>
-->
</select>
<input type="submit" value="Submit">
|