ASP.NET小收集:IFrame使用
生活随笔
收集整理的這篇文章主要介紹了
ASP.NET小收集:IFrame使用
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
使用Iframe制作一個(gè)固定框架,很方便與象后臺(tái)網(wǎng)站之類的頁(yè)面
?1<html?xmlns="http://www.w3.org/1999/xhtml"?>
?2<head?runat="server">
?3<title>后臺(tái)</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>此網(wǎng)頁(yè)使用了框架,但您的瀏覽器不支持框架。</p>
11</body>
12</noframes>
13〈/frameset>
14</html>
?1<html?xmlns="http://www.w3.org/1999/xhtml"?>
?2<head?runat="server">
?3<title>后臺(tái)</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>此網(wǎng)頁(yè)使用了框架,但您的瀏覽器不支持框架。</p>
11</body>
12</noframes>
13〈/frameset>
14</html>
轉(zhuǎn)載于:https://www.cnblogs.com/lixx/archive/2008/06/17/1223565.html
總結(jié)
以上是生活随笔為你收集整理的ASP.NET小收集:IFrame使用的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: 黄山风景区索道攻略
- 下一篇: C#动态加载DLL(转)