最好能给出代码,非常感谢!

解决方案 »

  1.   

    iframe可以实现<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Wage_Main.aspx.cs" Inherits="Wage_Main" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head runat="server">
        <title>无标题页</title>
    </head>
    <frameset rows="100,*" cols="*" framespacing="0" frameborder=10 border="0" bordercolor="#FF0000">
        <frame src="Wage_Main_Top.aspx" name="left" scrolling="no" >
        <frame name="main" scrolling="No" src="Wage_Welcome.aspx" >
        <noframes>
            <body>
                <p>
                    看不到?</p>
            </body>
        </noframes>
    </frameset>
    </html>
    上左右布局的 可以自己改
      

  2.   

    不用iframe的话可以用母版来完成!或者右边内容用js加载!(不过有点复杂),异或有多少个页面就做多少个左边那样的不过更麻烦!
      

  3.   

     iframe   母版页  用户控件
      

  4.   

    这种结构我首先想到的是iframe,很典型的。实现也是比较容易的
      

  5.   

    <%@ Page Language="C#" AutoEventWireup="true"  CodeFile="ManageMain.aspx.cs" Inherits="ManageMain" %>
    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head runat="server"> 
        <title></title>
    </head>
    <body>
        <form id="FomSub" runat="server">
        <div>
            统一身份认证中心
            <table align="center" width="988" border="0" cellspacing="0" cellpadding="0">
                <tr>
                    <td height="500" valign="top" style="width: 191px"  align="center">
                        <table width="191" border="0" cellspacing="0" cellpadding="0">
                            <tr>
                                <td  align="center"></td>
                            </tr>
                            <tr>
                                <td width="191" height="14" align="center" valign="top">
                                  <iframe  id="left" name="left" frameborder="0" scrolling="auto" width="190" height="900" src="left2.aspx"></iframe><%--左边的树状结构--%>
                                </td>
                            </tr>
                            <tr>
                                <td align="center">&nbsp;
                                    </td>
                            </tr>
                        </table>
                    </td>
                    <td width="9"></td>
                    <td width="778" valign="top" class="center2_bk_4">                
                        <iframe id="RightPage" name="RightPage" frameborder="0" scrolling="auto" width="774" height="915" ></iframe><%--页面--%>
                    </td>
                </tr>
            </table>
            
        </div>
        </form>
    </body>
    </html>