frames and multiple links

liunx

Guest
I have a page with several links and i want to connect each link to a page with the same frame on top but a different page in the bottom frame...how can i do this?<!--content-->You make a frameset for each combination and have each link load one of those new framesets. If you have a great number of combinations then you write a server side script to generate the framesets as needed.<!--content-->I'm not sure if you're asking the question that Charles has answered or not (no offense meant Charles). If you're saying that you have 2 frames, a bottom frame and a top frame and all you want to do is load different pages in the same bottom frame, then in your frameset you'd give the frame a name <frame name="bottom"> and when you wrote the link you'd specify it to be opened in the bottom frame <A HREF=http://www.webdeveloper.com/forum/archive/index.php/"newpage.html" target="bottom">New Page</A>.<br />
If this isn't what you're looking for then ignore me!<br />
IxxI<!--content-->
 
Back
Top