opening two pages in a two iframes in one click
-
Hi all! I have a page with two iframes, each on one side of the page, now what I want is to load a page on each of those two iframes on the sides in one click. I can only load a page to one frame at a time, but what i want it to populate each of those two frames with a page. Anyone know how to go about doing that in one click.
-
Hi all! I have a page with two iframes, each on one side of the page, now what I want is to load a page on each of those two iframes on the sides in one click. I can only load a page to one frame at a time, but what i want it to populate each of those two frames with a page. Anyone know how to go about doing that in one click.
how about creating an event handler and when the person say clicks a button one page loads, throw an event that then loads the next page
-
Hi all! I have a page with two iframes, each on one side of the page, now what I want is to load a page on each of those two iframes on the sides in one click. I can only load a page to one frame at a time, but what i want it to populate each of those two frames with a page. Anyone know how to go about doing that in one click.
Hi, How about using javascript? Add onclick="opentwo()" to that button. and add script scetion to the page:
function opentwo(){ document.all.frame1.src="url1" document.all.frame2.src="url2" }
Juno MCSD.NET, MCDBA, MCSE ---------------------------------------------------------- Support Team of EasyDotNet, INC. http://www.EasyDotNet.com DataForm.NET - The most powerful data entry web server control for ASP.NET