123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="CreateTable.aspx.cs" Inherits="Admin_CreateTable" %>
- <!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 id="Head1" runat="server">
- <title></title>
- <link href="../JS/tableCss.css" rel="stylesheet" type="text/css" />
- <link href="../JS/ASPNET2BaseCss.css" rel="stylesheet" type="text/css" />
- <style>
- #maindiv{
-
- height:auto;
- border:#06F 1px groove;
- margin:0 auto;
- margin-top:10px;
- border-radius:15px;
- box-shadow:#CCC 6px 6px;
- padding:10px;
- font-size:12px;
- background-color:White;
- }
- #menu1{
-
- background-color:#E7F4F8;
- border:#03C 1px dotted;
- border-radius:8px;
- color:#FFF;
- padding:3px;
- box-shadow:#859CAD 4px 4px;
- text-align:left;
- color:#333399;
-
- }
- #stNav
- {
- padding:5px;
- margin-top:6px;
- background-color:#87B6E9;
- text-align:center;
- border:#F00 1px thick;
- box-shadow:#859CAD 3px 3px;
- border-radius:10px;
- }
- table
- {box-shadow:#859CAD 3px 3px;
- border-radius:5px;
-
- table-layout:fixed;
- empty-cells:show;
- border-collapse:collapse;
- margin:0 auto;
- border:1px solid #000033;
- color:#666;
- }
- table td{border:1px solid #94C4EF}
- h2{
- font-size:32px;
- font-family:"黑体";
- text-align:center;
- color:#00C;
- text-shadow:#000 2px 2px 5px, #FFFFFF -1px -1px 8px,2px 2px 6px #000000;
- }
- .TextBox1
- {
- width:98%;
- height:300px;
-
- }
- .zhpj
- {
- font-size:22px;
- font-family:楷体;
- background-color:#E2F2F0;
- }
-
- </style>
- </head>
- <body>
- <form id="form1" runat="server">
- <div id="maindiv">
- <div id="stNav">
- <table width='96%' height='111' border='1' align="center" cellspacing='1'
- bordercolor="#C1E7FD" bgcolor="#F4FCFF">
- <!--DWLayoutTable-->
- <tr bgcolor="#E2F2FC">
- <td height='33' align="center">
- <h2>
- <asp:Literal ID="Literal2" runat="server">动态创建表</asp:Literal></h2>
- </td>
- </tr>
-
- <tr align='center' >
- <td align='center' valign='middle' nowrap >
-
- <asp:TextBox ID="TextBox1" CssClass="TextBox1" runat="server"
- TextMode="MultiLine" ></asp:TextBox>
- <br />
- <asp:Button ID="Button1" runat="server" Height="31px" Text="创建"
- Width="100px" onclick="Button1_Click" />
- <asp:Button ID="Button3" runat="server" Height="26px"
- onclick="Button3_Click" Text="执行SQL语句" Width="102px" />
- </td>
- </tr>
- <tr bgcolor="#E2F2FC">
- <td>
- <asp:Literal ID="Literal1" runat="server" Text="显示已经存在的表"></asp:Literal> </td> </tr>
- </table>
-
- <br />
- </div>
- </div>
- </form>
- </body>
- </html>
|