日志标签:frameset

在ASP.NET MVC下使用frameset框架!

时间:2010年05月25日作者:Winson查看次数:查阅:3,440评论次数:10

我想大家使用 frameset 比较多的地方应该是做后台界面的时候了,众所周知,一般情况下 frameset 都是与 frame 联合使用的,那么就必须要为 frame 的 src 属性指定一个框架页面,如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<frameset rows="60,*" cols="*" frameborder="no" border="0" framespacing="0">
    <frame src="top.html" name="topFrame" scrolling="No" noresize="noresize" id="Frame1" />
    <frameset rows="*" cols="188,*" framespacing="0" frameborder="no" border="0">
        <frame src="left.html" name="leftFrame" scrolling="No" noresize="noresize" id="Frame2" />
        <frameset rows="73,*" cols="*">
            <frame src="right_top.html" name="mainFrame" id="Frame3" />
            <frame src="right.html" />
        </frameset>
    </frameset>
</frameset>
<noframes>
    <body>
    </body>
</noframes>

继续阅读:在ASP.NET MVC下使用frameset框架!»

无觅相关文章插件,快速提升流量