I think Jon meant to write
intProductId = request.form("ProductId")
instead of
intProductId = request.querystring("ProductId")
since this is a form.
--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)
FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
To assist you in getting the best answers for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
Hi Linda,
To add parameters you'd use a form - something along these lines
<form method="get" action="page.asp">
<select name="ProductId">
<option value="1">Widgets</option>
<option value="2">Grommets</option>
etc....
</select>
</form>
Then you can retrieve the paramater with
<%
intProductId = request.querystring("ProductId")
%>
--
Cheers,
Jon
Microsoft MVP
I also need to hyperlink to an .asp with parameters based on the
selection.
:
This should do it if you can populate value
<form>
<select id="setit">
<option selected>Select a page</option>
<option value="page1.htm">Page 1</option>
<option value="page2.htm">Page 2</option>
<option value="page3.htm">Page 3</option></select>
<input type="button" value="Go"
onclick="javascript:window.open(setit.options[setit.selectedIndex].value)">
</form>
--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
I have a drop down box that is populated using the database results
wizard
(into an Access database). How can I use the selection to jump to
another
page? There doesn't seem anywhere I can hyperlink although if I
bring the
results back as a list this can be achieved.