Programming issue...

1

116

I have a DRW, and I am using a dropdown for the search criteria. After
clicking the submit button, I would like to display the criteria in different
areas of the page. The dropdown contains years populated by javascript, so
there are actually variables in between <option></option>.
Any help is greatly appreciated.

David
 
J

Jon Spivey

Hi,
The criteria is available like this

<%
if request("NameOfYourDropDown") <> "" then
response.write "You searched for - " & request("NameOfYourDropDown")
end if
%>

Obviously you can put that anywhere you like on the page

Cheers,
Jon
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top