用框架吧!很容易就可以实现!
<html>
  <head>
    <title>Default</title>
  </head>
<frameset rows="20,*" border="0" framespacing="0" frameborder="0">
  <frame src="导航.aspx" name="topFrame" id="topFrame" noresize="true">
  <frame src="内容.aspx" name="mainFrame" id="mainFrame">
</frameset>
<noframes><body>no content.</body></noframes>
</html>

解决方案 »

  1.   

    要三个文件,上面的文件为default.aspx
    导航一个文件,内容一个文件
      

  2.   

    <html><head>
    <meta name="GENERATOR" content="Microsoft FrontPage 3.0">
    <title></title>
    </head><frameset rows="73,*">
      <frame name="banner" scrolling="no" noresize target="contents" src="main-t.htm"
      marginheight="6" marginwidth="20">
      <frameset cols="320,*">
        <frame name="contents" target="main" src="main-l.htm">
        <frame name="main" src="main-r.htm">
      </frameset>
      <noframes>
      <body>
      <p>This page uses frames, but your browser doesn't support them.</p>
      <p>&#26;</p>
      <p>&#26;</p>
      <p>&#26;</p>
      <p>&#26;</p>
      <p>&#26;</p>
      <p>&#26;</p>
      <p>&#26;</p>
      <p>&#26;</p>
      <p>&#26;</p>
      <p>&#26;</p>
      <p>&#26;</p>
      </body>
      </noframes>
    </frameset>
    </html>
      

  3.   

    用iframe可以吗?在页面里加<iframe></iframe>
      

  4.   

    iframe是页面的嵌套,应该不行把?
      

  5.   

    <Table cellpadding="0" cellspacing="0" style="width:100%;height:100%">
    <tr>
    <td height="1">
    <button onclick="window.open('http://www.sina.com.cn','aa')">新浪</button>
    <button onclick="window.open('http://www.csdn.com.cn','aa')">CSDN</button>
    <button onclick="window.open('http://www.china.com','aa')">中华网</button>
    </td>
    </tr>
    <tr>
    <td>
    <iframe name="aa" style="width:100%;height:100%" frameborder="0"></iframe>
    </td>
    </tr>
    </Table>
      

  6.   

    我用框架解决了,自已做的FLASH来链接,谢谢大家!