UpdateData.aspx 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <%@ Page Language="C#" Debug="true" AutoEventWireup="true" CodeFile="UpdateData.aspx.cs" Inherits="UpdateData" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" >
  4. <head runat="server">
  5. <title>修改数据</title><link href="CSS/tableCss.css" rel="stylesheet" type="text/css" />
  6. <style type="text/css">
  7. table
  8. { background-color:#EBF7FA;
  9. box-shadow:#859CAD 3px 3px;
  10. border-radius:10px;
  11. }
  12. tr {
  13. border-bottom-width: 1px;
  14. border-bottom-style: dotted;
  15. border-bottom-color: #C1CCD5;
  16. height:28px;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <form id="form1" runat="server">
  22. <div>
  23. <table width="100%" cellpadding="1" cellspacing="0">
  24. <tr>
  25. <td colspan="2" bgcolor="#E9F5FE" style="height: 28px" align="center">
  26. 修改数据&nbsp;</td>
  27. </tr>
  28. <tr>
  29. <td align="left" colspan="2" id="TD1" style="height: 62px">
  30. <asp:Panel ID="Panel1" runat="server" Width="100%">
  31. </asp:Panel>
  32. </td>
  33. </tr>
  34. <tr>
  35. <td colspan="2" align="center" bgcolor="#E9F5FE">
  36. <asp:Button ID="ModifyData" runat="server" Text=" 修 改 " Width="96px" OnClick="ModifyData_Click" />
  37. <br />
  38. <asp:Label id="lblMessage" runat="server" ForeColor="Red"></asp:Label></td>
  39. </tr>
  40. </table>
  41. </div>
  42. </form>
  43. </body>
  44. </html>