HTML frame tag

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Nancy

    HTML frame tag

    Hi Guys,
    I am trying to achieve "click one button and fresh two pages in one
    browser windows", but the following code does not work. Who has good
    idea? Thanks a lot.

    Nancy

    <HTML>
    <head></head>
    <FRAMESET rows="67,*" BORDER=0 FRAMEBORDER=0 FRAMESPACING=0>
    <FRAME SRC="top.html" NAME="top" MARGINHEIGHT=0
    MARGINWIDTH=0 SCROLLING=NO
    FRAMEBORDER=0 NORESIZE>
    <FRAME SRC="bottom.htm l NAME="top" MARGINHEIGHT=0
    MARGINWIDTH=0 SCROLLING=NO
    FRAMEBORDER=0 NORESIZE>
    </FRAMESET>
    </HTML>

    The bottom.html is as following,

    <HTML><HEAD></HEAD>
    <FRAMESET cols="180,*" BORDER=0 FRAMEBORDER=0 FRAMESPACING=0>
    <FRAME SRC="left.html" NAME="left" MARGINHEIGHT=0
    MARGINWIDTH=0 SCROLLING=NO FRAMEBORDER=0
    NORESIZE>
    <FRAME SRC="contents.h tml" NAME="content" MARGINHEIGHT=0
    MARGINWIDTH=0 SCROLLING=NO
    FRAMEBORDER=0 NORESIZE>
    </FRAMESET>
    </HTML>
  • Hywel

    #2
    Re: HTML frame tag

    In article <cf2f3693.04072 90906.2af8a8bd@ posting.google. com>, Nancy
    says...[color=blue]
    > Hi Guys,
    > I am trying to achieve "click one button and fresh two pages in one
    > browser windows", but the following code does not work.[/color]

    What code?

    --
    Hywel


    Comment

    • David Dorward

      #3
      Re: HTML frame tag

      Nancy wrote:
      [color=blue]
      > Hi Guys,
      > I am trying to achieve "click one button and fresh two pages in one
      > browser windows", but the following code does not work. Who has good
      > idea?[/color]

      <a href="different FrameSet.html" target="_top">

      (and frames suck, really suck, is is very likely that are not a good
      solution to your problem)

      --
      David Dorward <http://blog.dorward.me .uk/> <http://dorward.me.uk/>
      Home is where the ~/.bashrc is

      Comment

      Working...