用iframe写个例子吧,一样的:
<input type=button value=Open onclick=window.open('about:abc','show')>
<iframe id=show name=show ></iframe>

解决方案 »

  1.   

    <FRAMESET ROWS="," COLS="100,*" frameborder="1">
    <FRAME SRC="about:<input type=button value=test onclick=parent.document.frames[1].location='http://www.csdn.com'>" NAME="">
    <FRAME SRC="about:123" NAME="frame2">
    </FRAMESET>
      

  2.   

    window.open("whatever.html","Right桢的名字");Right桢的名字是指在Frameset里Right桢的name
      

  3.   

    left.asp
    <a href="right.asp?id=<%=id%>" target="rightframe">文件名</a>
    right.asp
    id=request.querystring("id")
    sql="select * from 表名 where id="&id
    .....
    .....