97 lines
3.8 KiB
Plaintext
97 lines
3.8 KiB
Plaintext
|
|
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="admin_member_edit00.aspx.cs" Inherits="Mtxfw.shop._Admin.admin_member_edit00" %>
|
||
|
|
<%@ Register Assembly="AspNetPager" Namespace="Wuqi.Webdiyer" TagPrefix="webdiyer" %>
|
||
|
|
<!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.4.4.min.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>会员账号</th>
|
||
|
|
<td><asp:TextBox ID="Text_UserID" runat="server" Width="150"></asp:TextBox><asp:HiddenField ID="Hidd_Url" runat="server" /></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<th>推荐人账号</th>
|
||
|
|
<td><asp:TextBox ID="Text_UserID2" runat="server" Width="150"></asp:TextBox>
|
||
|
|
|
||
|
|
</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>
|
||
|
|
<table width="100%" class="addtable">
|
||
|
|
<tr><th colspan="12">修改推荐人记录</th></tr>
|
||
|
|
<tr><td colspan="12">
|
||
|
|
|
||
|
|
账户:<input id="text_key" value="<%=Request.QueryString["key"] %>" type="text" style=" width:200px;" />
|
||
|
|
<input id="btn_search" type="button" value="搜索" onclick="search()" class="chaxun" />
|
||
|
|
|
||
|
|
</td> </tr>
|
||
|
|
|
||
|
|
<tr>
|
||
|
|
<th><b>账户</b></th>
|
||
|
|
<th><b>原推荐账户</b></th>
|
||
|
|
<th><b>现推荐账户</b></th>
|
||
|
|
<th><b>时间</b></th>
|
||
|
|
|
||
|
|
</tr>
|
||
|
|
<asp:Repeater ID="Repeater1" runat="server">
|
||
|
|
<ItemTemplate>
|
||
|
|
<tr <%#(Container.ItemIndex + 1)%2==0?"bgColor=\"#f4f4f4\" onmouseover=\"this.bgColor='#fdff7e'\" onmouseout='this.bgColor=\"#f4f4f4\"'":"bgColor=\"#ffffff\" onmouseover=\"this.bgColor='#fdff7e'\" onmouseout='this.bgColor=\"#ffffff\"'"%>>
|
||
|
|
|
||
|
|
<td>
|
||
|
|
<a href='admin_member_edit00.aspx?key=<%#Eval("UserName")%>'><%#Eval("UserName")%></a>
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
<a href='admin_member_edit00.aspx?key=<%#Eval("UserName1")%>'><%#Eval("UserName1")%></a>
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
<a href='admin_member_edit00.aspx?key=<%#Eval("UserName2")%>'><%#Eval("UserName2")%></a>
|
||
|
|
</td>
|
||
|
|
<td><%#Eval("addtime")%></td>
|
||
|
|
|
||
|
|
</tr>
|
||
|
|
</ItemTemplate>
|
||
|
|
</asp:Repeater>
|
||
|
|
|
||
|
|
<tr>
|
||
|
|
<td colspan="12" style="text-align:center">
|
||
|
|
<webdiyer:AspNetPager ID="AspNetPager1" AlwaysShow="true" runat="server"
|
||
|
|
FirstPageText="首页" LastPageText="尾页" NextPageText="下一页"
|
||
|
|
CustomInfoHTML="共 <font color="red">%RecordCount%</font> 条记录 当前 <font color="red">%CurrentPageIndex%/%PageCount%</font> 页"
|
||
|
|
PrevPageText="上一页" ShowPageIndexBox="Always" ShowCustomInfoSection="Left"
|
||
|
|
SubmitButtonText="Go" TextAfterPageIndexBox="页" ShowBoxThreshold="100"
|
||
|
|
CurrentPageButtonPosition="Center" ShowMoreButtons="False" PageIndexBoxType="DropDownList"
|
||
|
|
TextBeforePageIndexBox="转到" UrlPaging="True">
|
||
|
|
</webdiyer:AspNetPager>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
</table>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</form>
|
||
|
|
</body>
|
||
|
|
</html>
|