Hi Ted,
Once your site visitor gets to page2.asp you could use a DD menu for
navigating the iFrame contents.
Be sure to substitute the name for your iFrame where it appears in the
code.
------------------------------
Dropdown Navigation to iFrame
Courtesy Art Lung: Lots of useful code there.
http://lab.artlung.com/scripting/dropdown/
------------------------------
<select name="dest"
onchange="window.open(this.options[this.selectedIndex].value,'myIFrame')">
<option>Choose a destination for your IFrame!</option>
<option value="
http://www.yahoo.com/">YAHOO</option>
<option value="
http://www.google.com/">GOOGLE</option>
<option value="
http://www.altavista.com/">ALTAVISTA</option>
<option value="
http://www.amazon.com/">AMAZON</option>
<option value="
http://artlung.com/">ARTLUNG</option>
</select>
</Form>
<iframe src="
http://www.google.com/" name="myIFrame" width="400"
height="200">
You can't see this because your browser does not support iframes.
</iframe>
Ted said:
Hi
From page1.asp I want to link to page2.asp that contains an Iframe.
Depending on what link the user click on I want different dokuments to be
opened in the Iframe. Is it possible to include that in the hyperlink.
Thanks for your answer
Ted