View Single Post
Old 11-11-2004, 08:32 AM   #4 (permalink)
buchannon
Registered User
 
buchannon's Avatar
 
Join Date: Nov 2004
Posts: 43
buchannon is on a distinguished road
wow that was a lot easier than I thought it would be:

html file:
Quote:
<form method="post" action="redirect.asp" class="menu">
<select title="UNC Directory" name="unclink" id="unclink" style="width:150px" class="layoutMenu">

<option value="" selected> -UNC LINKS-</option>
<option value="http://www.unco.edu/" >UNC HOME</option>
-->
</select>
<input type="submit" value="Submit">
</form>
then the redirect.asp file:
Quote:
<%
dim unclink
unclink=request.form("unclink")
if unclink="" then unclink="http://www.unco.edu/"
response.redirect unclink
%>
buchannon is offline   Reply With Quote