<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CMSMemberIntegritySeller.aspx.cs" Inherits="CY.WebForm.Pages.membermanage.CMSMemberIntegritySeller" %>
|
|
<!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 id="scrollContent">
|
<table class="tableStyle" >
|
<tr>
|
<td class="ali03 w80px">
|
信誉值:
|
</td>
|
<td class="w80px">
|
<span runat="server" id="spnCredit"></span>
|
</td>
|
<td class="ali03 w80px">
|
信誉图标:
|
</td>
|
<td class="w80px">
|
<img id="imgLevelIcon" runat="server" />
|
</td>
|
<td class="ali03 w120px">
|
信誉等级名称:
|
</td>
|
<td class=" ">
|
<span runat="server" id="spnCreditLevel"></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>
|
<tr>
|
<td class="ali03 ">
|
信誉值:
|
</td>
|
<td colspan="5">
|
<input type="text" id="txtCredit" runat="server" class=" req int " min="0" maxlength="9" />
|
</td>
|
</tr>
|
<tr>
|
<td class="ali03 ">
|
缘由:
|
</td>
|
<td colspan="5">
|
<input type="text" id="txtFraction" runat="server" class=" req " maxlength="20" />
|
</td>
|
</tr>
|
<tr>
|
<td colspan="6" style=" text-align:center;">
|
<asp:Button ID="btn_submit" OnClick="btn_submit_form" Text="提交" runat="server" />
|
</td>
|
</tr>
|
</table>
|
</div>
|
<div style="margin-top: 10px;">
|
<asp:Repeater ID="RepClientList" runat="server">
|
<HeaderTemplate>
|
<table class="tableStyle" >
|
<tr>
|
<th class="w40px">
|
编号
|
</th>
|
|
<th class="w40px">
|
分数
|
</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("Fraction")%>
|
</td>
|
<td>
|
<%#Eval("LastUpdateTime")%>
|
</td>
|
<td>
|
<%#Eval("Reason")%>
|
</td>
|
</tr>
|
</ItemTemplate>
|
<FooterTemplate>
|
</table>
|
</FooterTemplate>
|
</asp:Repeater>
|
<div id="page">
|
<uc:UCPager ID="UCPager1" runat="server" />
|
</div>
|
<div class="CB"></div>
|
</div>
|
</form>
|
</body>
|
</html>
|