📄 browsecustomer.aspx
字号:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="BrowseCustomer.aspx.cs" Inherits="CRM.WEB.Bussiness.adteam.BrowseCustomer" %>
<%@ Register Assembly="PowerEasy.Controls" Namespace="PowerEasy.Controls" TagPrefix="cc1" %>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>客户联系记录详情</title>
<link href="../../Css/repeater.css" type="text/css" rel="stylesheet" />
<link href="../../Css/Common.css" type="text/css" rel="stylesheet" />
<link href="../../Css/grid.css" type="text/css" rel="stylesheet" />
<script language="javascript" src="../../Scripts/tooltips.js" type="text/javascript"></script>
<script language="javascript" src="../../Scripts/team.js" type="text/javascript"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body id="MasterPagebody" leftmargin="0" topmargin="0">
<form id="form1" runat="server">
<br />
<!--标题 开始-->
<table border="0" width="98%" cellspacing="0" cellpadding="3" align="center">
<tr>
<td height="30" style="background-color: #b0d0f3">
<strong><span style="color: #ff0000; FONT-WEIGHT: lighter; FONT-SIZE: 18px; FONT-FAMILY: 黑体">
客户列表:</span></strong>
</td>
</tr>
</table>
<!--标题结束-->
<asp:Repeater ID="bfrp" runat="server" OnItemDataBound="rp_ItemDataBound">
<HeaderTemplate>
<table width="98%" border="0" cellspacing="0" cellpadding="3" align="center">
<tbody>
<tr class="gridtitle">
<td width="30" height="25"><div align="center"><b>序号</b></div>
</td>
<td width="180"><div align="center"><b>客户名称</b></div>
</td>
<td width="80" height="20"><div align="center"><b>客户阶段</b></div>
</td>
<td width="80" nowrap><div align="center"><b>最近联系日期</b></div>
</td>
<td width="80" height="20"><div align="center"><b>跟踪进度</b></div>
</td>
<td width="80" nowrap><div align="center"><b>回访日期</b></div>
</td>
<td width="80" height="20"><div align="center"><b>业务员</b></div>
</td>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr>
<td width="30" height="20" align="center"><%# DataBinder.Eval(Container.DataItem,"c_custId")%></td>
<td width="180" height="20" align="center" onclick='return openwin("ShowAllContact.aspx?custid=<%# Eval("c_custId")%>&cust=<%# Eval("c_namefull")%>");' ><%# DataBinder.Eval(Container.DataItem,"c_namefull")%></td>
<td width="80" height="20" align="center"><%# DataBinder.Eval(Container.DataItem, "c_stage")%></td>
<td width="80" height="20" align="center"><%# DataBinder.Eval(Container.DataItem, "c_lastdate","{0:yyyy-MM-dd}")%></td>
<td width="80" height="20" align="center"><asp:Label ID="c" Text='<%# Eval("c_followstep")%>' runat="server"></asp:Label></td>
<td width="80" height="20" align="center"><%# DataBinder.Eval(Container.DataItem, "c_lastdate","{0:yyyy-MM-dd}")%></td>
<td width="80" height="20" align="center"><asp:Label ID="c_handleman" Text='<%# Eval("c_handleman")%>' runat="server"></asp:Label></td>
</tr>
</ItemTemplate>
<FooterTemplate>
</tbody>
</table>
</FooterTemplate>
</asp:Repeater>
<table width="100%" cellspacing="0" cellpadding="3" align="center">
<tr>
<td align="center">
<cc1:AspNetPager ID="AspNetPager1" runat="server" FirstPageText="首页" LastPageText="尾页" NextPageText="下一页" PrevPageText="上一页" PageSize="10" NumericButtonTextFormatString="[{0:d}]" OnPageChanging="AspNetPager1_PageChanging" NumericButtonCount="7" Width="98%" ShowBoxThreshold="3" OnPageChanged="AspNetPager1_PageChanged">
</cc1:AspNetPager>
</td>
</tr>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -