how to make display 2 aspx pages in 2 frames
hi,
i been doing a project in asp.net and i have created an aspx page with 3 frames, frame_top,frame_left,frame_right.
the 'src' for the left frame is another aspx file with two text box and two buttons OK and Cancel. i want to know how i can load diff pages on the left frame and right frame when i click OK after checking some details from the database.
i have successeded in checking with the database but cant display any page on the frames...
pls someone help me....been trying not noo hope...
byee
peace
attitude
Re: how to make display 2 aspx pages in 2 frames
Hi
using JScript:
Code:
frame_left.src="1.aspx";
frame_right.src="2.aspx";
or you can make this on the server side :
Code:
<FRAME FRAMEBORDER=0 SRC=<%=pageurl%>>