CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    May 2003
    Posts
    8

    Red face 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

  2. #2
    Join Date
    Apr 2002
    Location
    Egypt
    Posts
    2,210

    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%>>
    Hesham A. Amin
    My blog , Articles


    <a rel=https://twitter.com/HeshamAmin" border="0" /> @HeshamAmin

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured