Hi there,
I'm in the process of converting our current web site over using
ASP.NET, and was wondering if anyone has any experience with image maps
in ASP.NET.
I currently have the following image map (I've abbreviated the cords
since they are extensive):
<map name=3D"coveragemap" id=3D"coveragemap">
<area shape=3D"poly" href=3D"stateindex.asp?st=3Dor" tabindex=3D"2"
coords=3D"28,63,...,28,63" alt=3D"Oregon Locations">
<area shape=3D"poly" href=3D"stateindex.asp?st=3Dmt" tabindex=3D"5"
coords=3D"147,20,...,147,20" alt=3D"Montana Locations">
<area shape=3D"poly" href=3D"stateindex.asp?st=3Dca" tabindex=3D"3"
coords=3D"12,143,...,12,143" alt=3D"California Locations">
...
</map>
<img src=3D"graphics/westernUS.jpg" height=3D"331" width=3D"300"
usemap=3D"#coveragemap" alt=3D"Locations">
By clicking on a state, the user is sent to a page for that state, which
lists all locations in that state based on a querystring that is passed
to the page and then sent to a stored procedure.
I am not quite sure how to get started on this. If anyone has any
advice I would sure appreciate it.
Thank you,
John