1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <%@ Page Language="C#" Debug="true" AutoEventWireup="true" CodeFile="UpdateData.aspx.cs" Inherits="UpdateData" %>
- <!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/tableCss.css" rel="stylesheet" type="text/css" />
- <style type="text/css">
- table
- { background-color:#EBF7FA;
- box-shadow:#859CAD 3px 3px;
- border-radius:10px;
- }
- tr {
- border-bottom-width: 1px;
- border-bottom-style: dotted;
- border-bottom-color: #C1CCD5;
- height:28px;
- }
- </style>
- </head>
- <body>
- <form id="form1" runat="server">
- <div>
- <table width="100%" cellpadding="1" cellspacing="0">
- <tr>
- <td colspan="2" bgcolor="#E9F5FE" style="height: 28px" align="center">
- 修改数据 </td>
- </tr>
- <tr>
- <td align="left" colspan="2" id="TD1" style="height: 62px">
- <asp:Panel ID="Panel1" runat="server" Width="100%">
- </asp:Panel>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" align="center" bgcolor="#E9F5FE">
- <asp:Button ID="ModifyData" runat="server" Text=" 修 改 " Width="96px" OnClick="ModifyData_Click" />
- <br />
- <asp:Label id="lblMessage" runat="server" ForeColor="Red"></asp:Label></td>
- </tr>
- </table>
-
- </div>
- </form>
- </body>
- </html>
|