Gossamer Forum
Home : Products : Links 2.0 : Discussions :

Frames and the jump.cgi

Quote Reply
Frames and the jump.cgi
hello all,
i am running frames and when you click on a link(to someone elses site) the page comes up in the same window, how can i keep this from happning.

look--> Http://cyberweb1.hypermart.net
Quote Reply
Re: Frames and the jump.cgi In reply to
If you want the link to jump to the top of the same window, then use the following target attribute in the link codes in the link.html like the following:

Code:
<a href="<%db_cgi_url%>/jump.cgi?ID=<%ID%>" target="_top"><%Title%></a>

If you want the link to open up in a NEW window, then use the following codes:

Code:
<a href="<%db_cgi_url%>/jump.cgi?ID=<%ID%>" target="_newwin"><%Title%></a>

Hope this helps.

Regards,

------------------
Eliot Lee....
Former Handle: Eliot
* Check Resource Center
* Search Forums


[This message has been edited by AnthroRules (edited February 28, 2000).]