代码修改后的版本,全部提交
This commit is contained in:
102
Mtxfw.shop/Member_JiangLi_List.aspx
Normal file
102
Mtxfw.shop/Member_JiangLi_List.aspx
Normal file
@@ -0,0 +1,102 @@
|
||||
<%@ Page Title="" Language="C#" MasterPageFile="~/Telesa.Master" AutoEventWireup="true" CodeBehind="Member_JiangLi_List.aspx.cs" Inherits="Mtxfw.shop.Member_JiangLi_List" %>
|
||||
<%@ Register Assembly="AspNetPager" Namespace="Wuqi.Webdiyer" TagPrefix="webdiyer" %>
|
||||
<%@ Register src="Controls/Left.ascx" tagname="Left" tagprefix="uc1" %>
|
||||
<asp:Content ID="Content1" ContentPlaceHolderID="MyHead" runat="server">
|
||||
<%
|
||||
Response.Buffer=true;
|
||||
Response.Expires=0;
|
||||
Response.ExpiresAbsolute=DateTime.Now.AddDays(-1);
|
||||
Response.CacheControl="no-cache";
|
||||
%>
|
||||
<link href="css/member.css" rel="stylesheet" type="text/css" />
|
||||
<style type="text/css">
|
||||
#ctl00_MyContent_Label_JF{ color:Red;}
|
||||
</style>
|
||||
<script src="Scripts/setdate.js" type="text/javascript"></script>
|
||||
<script type="text/javascript">
|
||||
var ifshow = 1;
|
||||
var search2 = function () {
|
||||
|
||||
var SJ = document.getElementById('text_SJ');
|
||||
var SJ2 = document.getElementById('text_SJ2');
|
||||
location.href = '?SJ=' + SJ.value + '&SJ2=' + SJ2.value;
|
||||
|
||||
};
|
||||
|
||||
|
||||
</script>
|
||||
</asp:Content>
|
||||
<asp:Content ID="Content2" ContentPlaceHolderID="MyContent" runat="server">
|
||||
<form runat="server">
|
||||
<div id="main">
|
||||
<div id="Location">当前位置: <a href="/" class="red">首页</a> > <a href="/Member_Index.aspx">会员中心</a> > 我的积分</div>
|
||||
<div id="member" class="f_clear">
|
||||
<uc1:Left ID="Left1" runat="server" />
|
||||
<div class="right">
|
||||
<div id="membertab">
|
||||
|
||||
<div id="membertab">
|
||||
<h2>我的积分</h2>
|
||||
<table width="100%" border="0" class="data_table" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td colspan="4">积分总额:<span style=" font-size:14px; color:#ff0000;">¥<%=umoney.ToString("f2")%></span>,积分余额:<span style=" font-size:14px; color:#ff0000;">¥<%=umoney0.ToString("f2")%></span>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<h2>我的积分记录</h2>
|
||||
<table width="100%" border="0" class="data_table" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td colspan="7">日期从
|
||||
<input id="text_SJ" type="text" value='<%=Request.QueryString["SJ"]%>' onfocus="ca_show('text_SJ', this, '-');"/>到<input id="text_SJ2" type="text" value='<%=Request.QueryString["SJ2"]%>' onfocus="ca_show('text_SJ2', this, '-');"/>
|
||||
|
||||
<input id="Member_search" type="button" value="查询" onclick="search2()" class="results_btn" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor="#f7f7f7">
|
||||
<th><b>购买会员</b></th>
|
||||
<th><b>购买订单</b></th>
|
||||
<th><b>购买总额</b></th>
|
||||
<th><b>获得积分</b></th>
|
||||
<th><strong>时间</strong></th>
|
||||
<th><strong>状态</strong></th>
|
||||
<th><strong>备注</strong></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><%#Eval("UserName")%></td>
|
||||
<td class='isoe'><!--<a href='/shop_view.aspx?ID=<%#Eval("Managers")%>' class='black' target='_blank'><img src='<%#Mtxfw.Utility.Common.GetCoverPic(Eval("ProductImages").ToString(), "100x100", "cut")%>'/><br><%#Eval("ProductName")%></a><br>订单号:--><%#Eval("ListNumber")%></td>
|
||||
<td><%#Convert.ToDouble(Eval("b1")).ToString("f2")%></td>
|
||||
<td><%#Convert.ToDouble(Eval("b0")).ToString("f2")%></td>
|
||||
<td><%#Eval("addtime")%></td>
|
||||
<td><%#Eval("Seef").ToString() == "1" ? "已结算" : "未结算"%></td>
|
||||
<td><%#Eval("conent")%></td>
|
||||
</tr>
|
||||
</ItemTemplate>
|
||||
</asp:Repeater>
|
||||
<tr>
|
||||
<td colspan="7"> <webdiyer:AspNetPager ID="MyPager" 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>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
<script type="text/javascript">
|
||||
|
||||
|
||||
$("#ap_category").hide();
|
||||
|
||||
</script>
|
||||
</asp:Content>
|
||||
Reference in New Issue
Block a user