⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 complainlist.aspx

📁 动易SiteFactory&#8482 网上商店系统1.0源代码
💻 ASPX
字号:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ComplainList.aspx.cs" Inherits="PowerEasy.WebSite.User.ComplainList" %>

<!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 runat="server">
    <title>被投诉记录</title>
</head>
<body>
    <pe:UserNavigation ID="UserCenterNavigation" Tab="shop" runat="server" />
    <pe:ExtendedSiteMapPath ID="YourPosition" SiteMapProvider="UserMapProvider" runat="server" />
    <form id="form1" runat="server">
    <div>
    <pe:ExtendedGridView ID="EgvComplain" runat="server" AllowPaging="True" AutoGenerateColumns="False" DataKeyNames="ItemId" DataSourceID="OdsComplain"  OnRowDataBound="EgvComplain_RowDataBound">
        <Columns>
            <pe:BoundField DataField="DateAndTime" HeaderText="投诉时间" SortExpression="DateAndTime"
                DataFormatString="{0:yyyy-MM-dd HH:mm:ss}" HtmlEncode="False">
                <HeaderStyle Width="16%" />
            </pe:BoundField>
            <pe:TemplateField HeaderText="客户名称">
                <HeaderStyle Width="10%" />
                <ItemTemplate>
                    <%# Eval("ShortedForm") %>
                </ItemTemplate>
            </pe:TemplateField>
            <pe:BoundField HeaderText="投诉类型" SortExpression="ComplainType"
                HtmlEncode="False">
                <HeaderStyle Width="12%" />
            </pe:BoundField>
            <pe:TemplateField HeaderText="主题">
                <ItemTemplate>
                    <%# Eval("Title") %>
                </ItemTemplate>
            </pe:TemplateField>
            <pe:BoundField HeaderText="紧急程度" SortExpression="MagnitudeOfExigence"
                HtmlEncode="False">
                <HeaderStyle Width="8%" />
            </pe:BoundField>
            <pe:BoundField HeaderText="记录状态" SortExpression="Status" HtmlEncode="False">
                <HeaderStyle Width="8%" />
            </pe:BoundField>
        </Columns>
    </pe:ExtendedGridView>
    <asp:ObjectDataSource ID="OdsComplain" TypeName="PowerEasy.Crm.Complain" StartRowIndexParameterName="startRowIndexId" MaximumRowsParameterName="maxNumberRows" SelectMethod="GetList" SelectCountMethod="GetTotal" runat="server" EnablePaging="True">
    </asp:ObjectDataSource>    
  </div>
    </form>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -