<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="IntegritySeller.aspx.cs" Inherits="CY.WebForm.Pages.member.IntegritySeller" %>
|
|
<!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 id="Head1" runat="server">
|
<title>买家诚信名片</title>
|
<uc:CMSHead ID="CMSHead1" runat="server" />
|
</head>
|
<body>
|
<form id="form1" runat="server" class="form">
|
<div>
|
<table class="tableStyle" style=" width:720px;">
|
<tr>
|
<td class="ali03 w120px">
|
信誉图标:
|
</td>
|
<td class=" w120px">
|
<img id="imgLevelIcon" runat="server" />
|
</td>
|
<td class="ali03 w120px">
|
信誉等级名称:
|
</td>
|
<td class=" w120px">
|
<span runat="server" id="spnCreditLevel"></span>
|
</td>
|
<td class="ali03 w120px">
|
信誉值:
|
</td>
|
<td >
|
<span runat="server" id="spnCredit"></span>
|
</td>
|
</tr>
|
<tr>
|
<td class="ali03 ">
|
好评个数:
|
</td>
|
<td>
|
<span runat="server" id="spnGoodEvaluation"></span>
|
</td>
|
<td class="ali03 ">
|
中评个数:
|
</td>
|
<td>
|
<span runat="server" id="spnMediumEvaluation"></span>
|
</td>
|
<td class="ali03 ">
|
差评个数:
|
</td>
|
<td>
|
<span runat="server" id="spnBadEvaluation"></span>
|
</td>
|
</tr>
|
</table>
|
</div>
|
<div style=" margin-top:10px;">
|
<asp:Repeater ID="RepClientList" runat="server">
|
<HeaderTemplate>
|
<table class="tableStyle" style=" width:720px;">
|
<tr>
|
<th class="w120px">编号</th>
|
<th class="w120px">缘由</th>
|
<th class="w120px">分数</th>
|
<th>时间</th>
|
</tr>
|
</HeaderTemplate>
|
<ItemTemplate>
|
<tr>
|
<td><%#Container.ItemIndex + 1+ this.UCPager1.PageSize * (this.UCPager1.PageIndex - 1)%></td>
|
<td><%#Eval("Reason")%></td>
|
<td><%#Eval("Fraction")%></td>
|
<td><%#Eval("LastUpdateTime")%></td>
|
</tr>
|
</ItemTemplate>
|
<FooterTemplate>
|
</table>
|
</FooterTemplate>
|
</asp:Repeater>
|
<div id="page">
|
<uc:UCPager ID="UCPager1" runat="server" />
|
</div>
|
</div>
|
</form>
|
</body>
|
</html>
|