55 lines
1.8 KiB
Plaintext
55 lines
1.8 KiB
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="admin_member_add.aspx.cs" Inherits="Mtxfw.shop._Admin.admin_member_add" %>
|
|
|
|
<!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/style.css" rel="stylesheet" type="text/css" />
|
|
<link href="css/Burgundy.css" rel="stylesheet" type="text/css" />
|
|
<script src="/Scripts/jquery-1.7.2.js" type="text/javascript"></script>
|
|
|
|
</head>
|
|
<body>
|
|
<form id="form1" runat="server">
|
|
<div class="main">
|
|
<div class="bt1">会员管理 - 添加会员</div>
|
|
<div class="bt2">
|
|
<div class="clear"></div>
|
|
</div>
|
|
<div class="bt3">
|
|
|
|
<table width="100%" class="addtable">
|
|
<tr>
|
|
<th style=" width:120px;">账户用户名</th>
|
|
<td><asp:TextBox ID="Text_UserName" runat="server" Width="200"></asp:TextBox><asp:HiddenField ID="Hidd_Url" runat="server" /> <font color="red">*</font> </td>
|
|
</tr>
|
|
<tr>
|
|
<th>账户密码</th>
|
|
<td><asp:TextBox ID="Text_Password" runat="server" Width="200"></asp:TextBox> <font color="red">*</font></td>
|
|
</tr>
|
|
<tr>
|
|
<th>手机号码</th>
|
|
<td>
|
|
<asp:TextBox ID="Text_Phone" runat="server" Width="200"></asp:TextBox> <font color="red">*</font>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th></th>
|
|
<td>
|
|
<asp:Button ID="Btn_Edit" runat="server" Text="修改" CssClass="savebtn" />
|
|
<input id="btn_back" type="button" value="返回" class="returnbtn" onclick="history.go(-1)" />
|
|
|
|
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</body>
|
|
</html>
|