首次推送
This commit is contained in:
78
Mtxfw.shop/Member_favorite_List.aspx
Normal file
78
Mtxfw.shop/Member_favorite_List.aspx
Normal file
@@ -0,0 +1,78 @@
|
||||
<%@ Page Title="" Language="C#" MasterPageFile="~/Telesa.Master" AutoEventWireup="true" CodeBehind="Member_favorite_List.aspx.cs" Inherits="Mtxfw.shop.Member_favorite_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">
|
||||
<link href="css/member.css" rel="stylesheet" type="text/css" />
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
var search = function () {
|
||||
|
||||
var key = document.getElementById('text_key');
|
||||
location.href = 'Member_wenda_List.aspx?key=' + key.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">
|
||||
<h2>我的收藏</h2>
|
||||
<table style=" width:100%;" cellSpacing="0" align="center">
|
||||
|
||||
|
||||
<tr bgColor="#E2F2FF">
|
||||
<th style=" width:30px">选择</th>
|
||||
<th style=" width:70%">收藏标题</th>
|
||||
<th>收藏时间</th>
|
||||
</tr>
|
||||
<asp:Repeater ID="Repeater1" runat="server">
|
||||
<ItemTemplate>
|
||||
<tr>
|
||||
<td style=" text-align:center;"><asp:checkbox ID="checka" runat="server" CssClass='<%#Eval("ID") %>'></asp:checkbox></td>
|
||||
<td><a href="view-<%#Eval("ProductID")%>.html" target="_blank"><%#HttpUtility.HtmlEncode(Eval("bName").ToString())%></a></td>
|
||||
<td style=" text-align:center;"><%#HttpUtility.HtmlEncode(Eval("addtime").ToString())%></td>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</ItemTemplate>
|
||||
</asp:Repeater>
|
||||
<tr>
|
||||
<td colspan="8" style="text-align:left">
|
||||
操作:<span style=" cursor:pointer; color:Blue;" onclick="seclectall(0)">全选</span> <span style=" cursor:pointer; color:Blue;" onclick="seclectall(1)">取消所选</span>
|
||||
将所选项
|
||||
|
||||
<asp:DropDownList ID="seclect_Drop" runat="server">
|
||||
<asp:ListItem Value="0">取消关注</asp:ListItem>
|
||||
</asp:DropDownList>
|
||||
|
||||
|
||||
<asp:Button ID="Btn_Run" OnClick="Run_Click" runat="server" OnClientClick="return confirm('确定要执行吗?')" Text="执行"></asp:Button>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="5"> <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>
|
||||
|
||||
|
||||
</asp:Content>
|
||||
Reference in New Issue
Block a user