Results 1 to 4 of 4

Thread: Frames

  1. #1

    Thread Starter
    Hyperactive Member parkes's Avatar
    Join Date
    Jan 1999
    Location
    Unitied Kingdom
    Posts
    303
    I've got a page with two frames, a list is at the top. When I select an item from the list I want it to display some content in the frame below. How is this done?
    Thanks in advance for any help provided.

    VB 6 Enterprise Edition SP4
    ADO, SQL 7/2000, ASP and some JavaScript


    >> Life goes on, but for how long? <<
    If you can smile when things go wrong, you have someone in mind to blame

  2. #2
    Evil Genius alex_read's Avatar
    Join Date
    May 2000
    Location
    Espoo, Finland
    Posts
    5,538
    Code:
    <script lanquage="VbScript">
    Sub List1_onclick
      Top.rightframe.location.href = "http://www.twistedhumour.com
    End Sub
    </script>

    Please rate this post if it was useful for you!
    Please try to search before creating a new post,
    Please format code using [ code ][ /code ], and
    Post sample code, error details & problem details

  3. #3
    Evil Genius alex_read's Avatar
    Join Date
    May 2000
    Location
    Espoo, Finland
    Posts
    5,538
    Phew, and here is a basic sample...
    Attached Files Attached Files

    Please rate this post if it was useful for you!
    Please try to search before creating a new post,
    Please format code using [ code ][ /code ], and
    Post sample code, error details & problem details

  4. #4
    Fanatic Member
    Join Date
    Jan 1999
    Location
    UK
    Posts
    554
    Hi Parkes,

    This is Alex_Reads code modified by me

    Code:
    <HTML>
    <FRAMESET Rows="15%,*">
     <FRAME NAME="fraTopNav" TARGET="fraArenaNav" SRC="Frame_Top.htm">
     <FRAME NAME="fraArenaNav" TARGET="_Self" Src="Frame_Main.htm">
    </FRAMESET>
    </HTML>

    DocZaf
    {;->

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