ASP.NET小收集<2>:IFrame使用

使用Iframe制作一个固定框架,很方便与象后台网站之类的页面
 1<html xmlns="http://www.w3.org/1999/xhtml" >
 2<head runat="server">
 3<title>后台</title>
 4</head>
 5<frameset cols="170,*" framespacing="1" border="1" frameborder="1">
 6<frame name="left" target="right" scrolling="auto" src="Left.aspx" noresize>
 7<frame name="right" src="">
 8<noframes>
 9<body>
10<p>此网页使用了框架,但您的浏览器不支持框架。</p>
11</body>
12</noframes>
13〈/frameset>
14</html>

原文地址:https://www.cnblogs.com/lixx/p/1223565.html