Browse Source

上传文件至 ''

华仔仔 6 years ago
parent
commit
60c9b41e86
5 changed files with 61 additions and 0 deletions
  1. 14 0
      Default.aspx
  2. 1 0
      Global.asax
  3. 41 0
      MasterPage.master
  4. 3 0
      Style.css
  5. 2 0
      ValidateCode.aspx

+ 14 - 0
Default.aspx

@@ -0,0 +1,14 @@
+<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Maticsoft.Web.Default" %>
+<!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>
+    <form id="form1" runat="server">
+    <div>
+   
+    </div>
+    </form>
+</body>
+</html>

+ 1 - 0
Global.asax

@@ -0,0 +1 @@
+<%@ Application Codebehind="Global.asax.cs" Inherits="Maticsoft.Web.Global" %>

+ 41 - 0
MasterPage.master

@@ -0,0 +1,41 @@
+<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="MasterPage.master.cs" Inherits="Maticsoft.Web.MasterPage" %>
+<%@ Register Src="~/Controls/copyright.ascx" TagName="copyright" TagPrefix="uc1" %>
+<!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="/style.css" type="text/css" rel="stylesheet" />
+    <asp:ContentPlaceHolder ID="head" runat="server">
+    </asp:ContentPlaceHolder>
+</head>
+<body>
+    <form id="form1" runat="server">
+    <div align="center">
+        <table cellspacing="0" cellpadding="5" width="700" border="0">
+            <tr>
+                <td bgcolor='<%=Application[Session["Style"].ToString()+"xtable_bgcolor"]%>'>
+                    <table cellspacing="0" bordercolordark='<%=Application[Session["Style"].ToString()+"xtable_bordercolordark"]%>'
+                        bordercolorlight='<%=Application[Session["Style"].ToString()+"xtable_bordercolorlight"]%>'
+                        cellpadding="5" width="100%" border="1">
+                        <tr bgcolor="#e4e4e4">
+                            <td bgcolor='<%=Application[Session["Style"].ToString()+"xtable_titlebgcolor"]%>'
+                                height="22" align="left">
+                                <%=TabTitle%>
+                            </td>
+                        </tr>
+                        <tr>
+                            <td height="22">
+                                <asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
+                                </asp:ContentPlaceHolder>
+                            </td>
+                        </tr>
+                    </table>
+                </td>
+            </tr>
+        </table>
+    </div>
+    <uc1:copyright ID="copyright1" runat="server" />
+    </form>
+</body>
+</html>

+ 3 - 0
Style.css

@@ -0,0 +1,3 @@
+td { font-size: 9pt}
+a { color: #000000; text-decoration: none}
+a:hover { color:#E78a29; text-decoration: none}

+ 2 - 0
ValidateCode.aspx

@@ -0,0 +1,2 @@
+<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ValidateCode.aspx.cs" Inherits="Maticsoft.Web.ValidateCode" %>
+