username@email.com
2025-05-12 ae6e40362a745caef9ead36f81f38313fb8c2c66
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<%@ 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>