62,236
社区成员




<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPageFront.master.cs" Inherits="FrontPage_MasterPageFront" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title> 朝阳市中心医院 </title>
</head>
<body>
<div id = "Header" style = "width:980px; height:200px; background-color:Blue ;">头部</div>
<form id="form1" runat="server">
<div id = "Content" style = "width:980px; height:600px; background-color:Aqua; ">
<asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</div>
</form>
<div id = "Footer" style = "width:980px; height:150px; background-color:Navy; ">Footer</div>
</body>
</html>
<%@ Page Title="" Language="C#" MasterPageFile="~/FrontPage/MasterPageFront.master" AutoEventWireup="true" CodeFile="Default3.aspx.cs" Inherits="FrontPage_Default3" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
2345678
</asp:Content>