You could do it with a SELECT block which would test which listbox entry was picked and then do the specific redirect. i.e.<br><br> Select Request.Form("your_list_box"<br> Case "List Entry 1"<br> Response.Redirect "PageForEntry1.asp"<br> Case "List Entry 2"<br> Response.Redirect "PageForEntry2.asp"<br> Case Else<br> Response.Redirect "SomeDefaultPage.asp"<br> End Select<br><br>Hope this is helpful.<br><br>Regards,<br>Tim<br>
Use the value attribute in your option tags:<br><select name="listbox"><br><option value="LinkForItem1.asp">Item 1</option><br><option value="LinkForItem2.asp">Item 2</option><br></select><br><br> <p>nick bulka<br><a href=mailto: > </a><br><a href= > </a><br>
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.