Click to See Complete Forum and Search --> : frames page link


pcs800
07-10-2003, 02:51 PM
how would i create a link that takes a user to a site that uses frames, and display a certain page in a certain frame?

for example:
a user see's one of my doorway pages on a search engine, and clicks the following link.
"click here for coffee cups" takes a user to www.whateversite.com and displays coffecups.htm in the content frame.

Is this possible?

xataku_nakusute
07-10-2003, 07:12 PM
To do so, you could try this:

on your doorway page, have
<html>
<head>
some stuff here
</head>
<body>
some more stuff
<a href="url of frames page" target="_top">
more stuff here
</body>
</html>

and then, on your frames page, have:
<html>
<frameset cols="whateva">
<frame src="here, put the url of the page you want to see from the link on your doorway page">
<frame src="anotha frame">
more frames
</frameset>
</html>

i dont know if thats what you wanted...but try it out if ya want

|:|:| )(aTaKu_(\)aKuSuTe |:|:|

)(aTaKu.TK (http://www.xataku.tk/)

pcs800
07-10-2003, 07:30 PM
won't that show the same content from no matter which doorway page directs them to the site?