Hotspots submit a name

F

FPSC

I need to make a USA map with hotspots that when you click on the name of each state the name of the state will be submitted to another page where the records for that state are shown.

I had created, in the same page, a dropdown box where you select the state and submit the data to the next page using a database table and query.

I put the map image in the same form as the dropdown box and created the hotspots for each state. What I don't know is how to send that State name to the next page.

Is there any way to do that? If yes, where can I find more information about it?

Any help will be very appreciated.

Thanks.
 
S

Stefan B Rusynko

Just make your hot spots w/ links that pass the state name as: resultpage?StateName
<area href="resultpage?StateName" shape="...." coord="...">




I need to make a USA map with hotspots that when you click on the name of each state the name of the state will be submitted to
another page where the records for that state are shown.

I had created, in the same page, a dropdown box where you select the state and submit the data to the next page using a database
table and query.

I put the map image in the same form as the dropdown box and created the hotspots for each state. What I don't know is how to send
that State name to the next page.

Is there any way to do that? If yes, where can I find more information about it?

Any help will be very appreciated.

Thanks.
 
M

Mike Mueller

....an on the resultspage, just set a variable to the sent
querystring

in asp
<%
Dim strState
strState = request.querystring("StateName")
%>



: Just make your hot spots w/ links that pass the state name
as: resultpage?StateName
: <area href="resultpage?StateName" shape="...."
coord="...">
:
: --
:
: _____________________________________________
: SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
: "Warning - Using the F1 Key will not break anything!" (-;
: To find the best Newsgroup for FrontPage support see:
: http://www.net-sites.com/sitebuilder/newsgroups.asp
: _____________________________________________
:
:
: I need to make a USA map with hotspots that when you click
on the name of each state the name of the state will be
submitted to
: another page where the records for that state are shown.
:
: I had created, in the same page, a dropdown box where you
select the state and submit the data to the next page using
a database
: table and query.
:
: I put the map image in the same form as the dropdown box
and created the hotspots for each state. What I don't know
is how to send
: that State name to the next page.
:
: Is there any way to do that? If yes, where can I find more
information about it?
:
: Any help will be very appreciated.
:
: Thanks.
:
:
 

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