首页 > 学院 > 开发设计 > 正文

asp.netFrameset框架集的嵌套使用

2019-11-14 14:21:49
字体:
来源:转载
供稿:网友

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Frame.aspx.cs" Inherits="FrameSet.Frame" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>FrameSet框架集</title>
</head>
<frameset rows="10%,*" bgcolor="yellow">
<frame src="Top.aspx" scrolling="no" frameborder="1" name="Top" noresize/>
<frameset cols="10%,*">
<frame src="Left.aspx" scrolling="no" frameborder="1" name="Left" marginheight="80" marginwidth="45" noresize/>
<frame src="Right.aspx" scrolling="auto" name="Right" noresize marginheight="200" marginwidth="700"/>
</frameset>
</frameset>
</html>


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表