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