PDA

Click to See Complete Forum and Search --> : frames and dynamic menus


joey o.
Nov 5th, 2000, 08:18 PM
Hi I've got a leftframe.asp that has a dynamic menu.Press a button and it gives you a menu based on your selection. Here's the problem: If I push, say, buttonA then I get a new menu with buttonAA in leftframe2.asp but with the same home page that belonged to the menu with buttonA in rightframe.
How do I make a hyperlink call two pages at once on a frame using VBScript?

Mark Sreeves
Nov 8th, 2000, 10:03 AM
Personally I avoid Client-side VBScript like the plague and I think everyone else should as well!


Now if you wanted to know how to do it using Javascript I might even bother to read the question! :)

da_silvy
Nov 11th, 2000, 10:46 PM
i think this works?

top.frames[0].location = "link1.asp"
top.frames[1].location = "link2.asp"