-
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?
-
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! :)
-
i think this works?
Code:
top.frames[0].location = "link1.asp"
top.frames[1].location = "link2.asp"