如何实现在一个网页内单击左边的不同的超联接,在右边有不同的网页内容显示

解决方案 »

  1.   

    FRAME里的连接有TARGET, 把它设为右边的框架就行了
      

  2.   

    frame找一个框架页面,查看源代码
      

  3.   

    xiaopai20(生活=懒觉+考试) 
    FRAME里的连接有TARGET, 把它设为右边的框架就行了就是这样啊
      
     
      

  4.   

    这些属性在哪里啊 怎么设置的
    我弄的框架是content和main类型的
    开发工具是vs.net 2003
      

  5.   

    主文档:
    <html>
    <head>
    <title>帧标志的综合示例</title>
    </head>
    <frameset cols="25%,*">
    <frame src="menu.htm" scrolling="no" name="Left">
    <frame src="page1.htm" scrolling="auto" name="Main">
    <noframes>
    <body>
    <p>对不起,您的浏览器不支持“帧”!</p>
    </body>
    </noframes>
    </frameset>
    </html>menu.htm
    <html>
    <head>
    <title>目录</title>
    </head>
    <body>
    <p><font color="#FF0000">目录</font></p>
    <p><a href="page1.htm" target="Main">链接到第一页</a></p>
    <p><a href="page2.htm" target="Main">链接到第二页</a></p>
    </body>
    </html>page1.htm
    <html>
    <head>
    <title>第一页</title>
    </head>
    <body>
    <p align="center"><font color="#8000FF">这是第一页!</font></p>
    </body>
    </html>page2.htm
    <html>
    <head>
    <title>第二页</title>
    </head>
    <body>
    <p align="center"><font color="#FF0080">这是第二页!</font></p>
    </body>
    </html>
      

  6.   

    <asp:HyperLink NavigateUrl="docControl.aspx" Target="main" runat="server">文檔管理</asp:HyperLink>单击左边的文档管理,右边的页面就改为doccontrol.aspx