zoukankan      html  css  js  c++  java
  • asp.net Frameset框架集的嵌套使用

    <%@ 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>

  • 相关阅读:
    hibernateValidator 升级
    java异常
    reids过期键三种删除策略
    hashmap源码探究
    http知识梳理1
    GregorianCalendar类的使用
    计算机网络笔记
    List的toArray方法
    实习周记一
    vue指令详解
  • 原文地址:https://www.cnblogs.com/xtflz/p/5098704.html
Copyright © 2011-2022 走看看