Link Selection box choice
On my form I have a drop down selection box that will be populated with a list retrieved from a recordset. I would like to link each selection in the list so if I click on the link, it will go to the next page bringing along the value I clicked on using querystring or any other method that will work better. See code below
Thanks
<Form>
Type
<select Name="TypeCode" Size="1">
<option Value SELECTED></option>
<%While not oRS30.EOF %>
<option Value="<%Response.Write oRS30("TypeCode").Value %>">
<a href='33EditMEID.asp?TypeCode=<%Response.Write oRS30("TypeCode").Value %>></option></A>
<%Response.Write "<BR>"
oRS30.MoveNext
Wend%>
</select>
</Form>
|