192 lines
6.8 KiB
Plaintext
192 lines
6.8 KiB
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="admin_member_info.aspx.cs" Inherits="Mtxfw.shop._Admin.admin_member_info" %>
|
|
|
|
<!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>
|
|
<script type="text/javascript">
|
|
var pid = '<%=pid %>';
|
|
var cid = '<%=cid %>';
|
|
var qid = '<%=qid %>';
|
|
$(document).ready(function () {
|
|
$('#select_p').change(function () {//获取城市
|
|
getCity();
|
|
});
|
|
|
|
$('#select_c').change(function () {//获取县区
|
|
getCounty();
|
|
});
|
|
|
|
$('#select_p').val(pid);
|
|
getCity();
|
|
})
|
|
|
|
function getCity() {
|
|
if ($('#select_p').val() != '-1') {
|
|
$.post("/Ajax.ashx", { action: 'GetCity', ProvinceID: $('#select_p').val(), cityIDs: cid }, function (data) {
|
|
if (data != 'false') {
|
|
$('#select_c').html(data);
|
|
getCounty();
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
function getCounty() {
|
|
if ($('#select_c').val() != '-1') {
|
|
$.post("/Ajax.ashx", { action: 'GetCounty', CityID: $('#select_c').val(), countyIDs: qid }, function (data) {
|
|
if (data != 'false')
|
|
$('#select_q').html(data);
|
|
});
|
|
}
|
|
}
|
|
</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">
|
|
<div class="title">
|
|
<input type="button" value="<<返回" class="btn" onclick="history.go(-1);" />
|
|
<asp:Button ID="Btn_Edit" runat="server" Text="修改" CssClass="btn" />
|
|
</div>
|
|
<table width="100%" border="0" cellspacing="1" cellpadding="0">
|
|
|
|
<tr>
|
|
<th>账户名称</th>
|
|
<td><asp:Label ID="Lit_UserName" runat="server"></asp:Label><asp:HiddenField ID="Hidd_Url" runat="server" /></td>
|
|
</tr>
|
|
<tr>
|
|
<th>账户密码</th>
|
|
<td><asp:TextBox ID="Text_Pwd1" TextMode="Password" runat="server"></asp:TextBox></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="2"><b>账户资料<asp:HiddenField ID="Hidd_Pwd" runat="server" /><asp:HiddenField ID="Hidd_Pwd2" runat="server" />
|
|
</b></td>
|
|
</tr>
|
|
<asp:Panel ID="Panel_Company" runat="server">
|
|
<tr id="gerenq">
|
|
<th>企业名称</th>
|
|
<td align="left"><asp:TextBox ID="Text_CompanyName" TextMode="Password" runat="server"></asp:TextBox>
|
|
</td>
|
|
</tr>
|
|
<tr id="gerenb">
|
|
<th>企业编号</th>
|
|
<td align="left"><asp:TextBox ID="Text_CompanyNumber" TextMode="Password" runat="server"></asp:TextBox>
|
|
</td>
|
|
</tr>
|
|
<tr id="lianxiren">
|
|
<th>联 系 人</th>
|
|
<td align="left"><asp:TextBox ID="Text_CompanyContact" TextMode="Password" runat="server"></asp:TextBox></td>
|
|
</tr>
|
|
<tr id="lianxidh">
|
|
<th>联系电话</th>
|
|
<td align="left"><asp:TextBox ID="Text_Mobile" runat="server"></asp:TextBox></td>
|
|
</tr>
|
|
</asp:Panel>
|
|
<tr>
|
|
<th>您的昵称</th>
|
|
<td>
|
|
<asp:Label ID="Text_NCName" runat="server"></asp:Label>将会公开显示在网页上
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>真实姓名</th>
|
|
<td>
|
|
<asp:TextBox ID="Text_RealName" runat="server"></asp:TextBox>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>性别</th>
|
|
<td><asp:TextBox ID="Text_Sex" runat="server"></asp:TextBox></td>
|
|
</tr>
|
|
<tr bgcolor="#ffffff" id="gerens">
|
|
<td width="30%" align="right">您的身份证号:</td>
|
|
|
|
<td align="left"><asp:TextBox ID="Text_SFZ" runat="server"></asp:TextBox>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>手机</th>
|
|
<td><asp:TextBox ID="Text_Phone" runat="server"></asp:TextBox></td>
|
|
</tr>
|
|
<tr>
|
|
<th>Email</th>
|
|
<td><asp:TextBox ID="Text_Email" runat="server"></asp:TextBox></td>
|
|
</tr>
|
|
<tr>
|
|
<th>QQ</th>
|
|
<td><asp:TextBox ID="Text_QQ" runat="server"></asp:TextBox></td>
|
|
</tr>
|
|
<tr>
|
|
<th>所在城市</th>
|
|
<td>
|
|
<select name="select_p" id="select_p" class="k1">
|
|
<option value="-1">--省--</option>
|
|
<%=GetProvince() %>
|
|
</select>
|
|
<select name="select_c" id="select_c" class="k2">
|
|
<option value="-1">--市--</option>
|
|
</select>
|
|
<select name="select_q" id="select_q" class="k3">
|
|
<option value="-1">--县区--</option>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>邮寄地址</th>
|
|
<td><asp:TextBox ID="Text_MailingAddress" runat="server"></asp:TextBox></td>
|
|
</tr>
|
|
<tr>
|
|
<th>邮政编码</th>
|
|
<td><asp:TextBox ID="Text_PostalCode" runat="server"></asp:TextBox></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2"><b>银行资料</b></td>
|
|
</tr>
|
|
<tr>
|
|
<th>收款人姓名</th>
|
|
<td>
|
|
<asp:TextBox ID="Text_PayeeName" runat="server" CssClass="k2"></asp:TextBox>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>银行卡号</th>
|
|
<td><asp:TextBox ID="Text_BankCard" runat="server" CssClass="k2"></asp:TextBox></td>
|
|
</tr>
|
|
<tr>
|
|
<th>开户银行</th>
|
|
<td> <asp:DropDownList ID="SelectBank" runat="server">
|
|
|
|
</asp:DropDownList></td>
|
|
</tr>
|
|
<tr>
|
|
<th>开户省份</th>
|
|
<td>
|
|
<asp:DropDownList ID="Drop_SelectP" runat="server">
|
|
<asp:ListItem Value="-1">--省--</asp:ListItem>
|
|
</asp:DropDownList>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>开户地址</th>
|
|
<td><asp:TextBox ID="Text_BankName" runat="server" CssClass="k2"></asp:TextBox></td>
|
|
</tr>
|
|
|
|
</table>
|
|
<asp:TextBox ID="Text_ProductName" Visible="false" runat="server"></asp:TextBox>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</body>
|
|
</html>
|