Frameset

A

Ale

I have 2 pages with frameset

a.html
<frameset rows="..." cols="..." >
<frame src="topA.htm" name="topFrame">
<frame src="1.htm" name="mainFrame">
</frameset>

b.html
<frameset rows="..." cols="..." >
<frame src="topB.htm" name="topFrame">
<frame src="2.htm" name="mainFrame">
</frameset>

In 1.htm page i want a link to the b.html page but it must load for
example "stuff.html" page in mainFrame instead of "2.htm" page...

Is it possible?
Thanks.

Ale
 
D

dorayme

"Ale said:
I have 2 pages with frameset

a.html
<frameset rows="..." cols="..." >
<frame src="topA.htm" name="topFrame">
<frame src="1.htm" name="mainFrame">
</frameset>

b.html
<frameset rows="..." cols="..." >
<frame src="topB.htm" name="topFrame">
<frame src="2.htm" name="mainFrame">
</frameset>

In 1.htm page i want a link to the b.html page but it must load for
example "stuff.html" page in mainFrame instead of "2.htm" page...

Is it possible?

It is possible in the sense that the user will do and be where
you want. Make another frameset

c.html
<frameset rows="..." cols="..." >
<frame src="topB.htm" name="topFrame">
<frame src="stuff.html" name="mainFrame">
</frameset>

and in the link concerned:

Read this <a href="c.html" target="_top">Stuff</a>

Something like this.
 
A

Ale

Ok, thank you!
I had already done that, buf I'm searching for a better solution...

Thank you anyway!

Bye bye!
Ale
 

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

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,065
Latest member
OrderGreenAcreCBD

Latest Threads

Top