1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Company.master.cs" Inherits="CY.WebForm.Pages.Templet.Default.Shared.Company" %>
<%@ Register src="~/Pages/Templet/Default/Shared/CompanyInfo.ascx" tagname="CompanyInfo" tagprefix="uc1" %>
 
<%@ Register src="~/Pages/Templet/Default/Shared/CompanyContact.ascx" tagname="CompanyContact" tagprefix="uc2" %>
 
<%@ Register src="~/Pages/Templet/Default/Shared/CompanyHead.ascx" tagname="CompanyHead" tagprefix="uc3" %>
 
<%@ Register src="~/Pages/Templet/Default/Shared/CompanyInfo.ascx" tagname="CompanyInfo" tagprefix="uc4" %>
 
<%@ Register src="~/Pages/Templet/Default/Shared/CompanyFoot.ascx" tagname="CompanyFoot" tagprefix="uc5" %>
 
<!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>
    <link href="../../../../css/main.css" rel="stylesheet" type="text/css" />
    <link href="../TemplateIndex.css" rel="stylesheet" type="text/css" />
</head>
<body>
    <form id="form1" runat="server">
 
    <div>
    
        <uc3:CompanyHead ID="CompanyHead1" runat="server" />
    
        <uc2:CompanyContact ID="CompanyContact1" runat="server" />
    
       <asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
    </asp:ContentPlaceHolder> 
    
 
     
        <uc4:CompanyInfo ID="CompanyInfo1" runat="server" />
    
        <uc5:CompanyFoot ID="CompanyFoot1" runat="server" />
    
    </div>
    
 
     
    </form>
</body>
</html>