AddRecord.aspx 1.1 KB

1234567891011121314151617181920212223242526272829
  1. <%@ Page Language="C#" Debug="true" AutoEventWireup="true" CodeFile="AddRecord.aspx.cs" Inherits="AddRecord" %>
  2. <!doctype html>
  3. <html lang="en">
  4. <head>
  5. <title>添加数据</title>
  6. <meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
  7. <link href="css/style.css" type="text/css" rel="stylesheet" />
  8. </head>
  9. <body>
  10. <div id="formbox">
  11. <form id="formpersonal" runat="server">
  12. <div class="form">
  13. <h2>
  14. <asp:Literal ID="Literal2" runat="server">添加数据</asp:Literal></h2>
  15. <fieldset>
  16. <legend>根据下面提示填写相应信息</legend>
  17. <%-- 如果有密码字段,先输入密码 <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
  18. <asp:Button ID="Button2" runat="server" onclick="Button2_Click"
  19. Text="转换后将转换后的数据库填写到密码框" Width="277px" />
  20. <asp:TextBox
  21. ID="TextBox2" runat="server"></asp:TextBox>--%>
  22. <asp:Literal ID="Literal1" runat="server"></asp:Literal>
  23. <ul><li><asp:Button ID="Button1" runat="server" Height="31px" Text=" 保 存 " Width="123px" onclick="Button1_Click" /></li></ul>
  24. </fieldset>
  25. </div>
  26. </form>
  27. </div>
  28. </body>
  29. </html>