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

📄 researchmanmodule.ascx

📁 这是企业客户服务系统 老师给的光盘里带的 看着不错
💻 ASCX
字号:
<%@ Import Namespace="KhfwWeb"%>
<%@ Control Language="c#" AutoEventWireup="false" Codebehind="ResearchManModule.ascx.cs" Inherits="KhfwWeb.Modules.ResearchManModule" TargetSchema="http://schemas.microsoft.com/intellisense/ie5"%>
<!--BEGIN RESEARCH MAN MODULE-->
<TABLE cellSpacing="0" cellPadding="5" width="100%">
	<TR class="rheader">
		<TD class="rheadercol" align="left" colSpan="2" height="25">客户服务调查管理
		</TD>
	</TR> <!-- SPACER ROW -->
	<TR class="rbody">
		<TD class="rbodycol" align="left" width="40%" colSpan="2" height="25">按客户名称:<asp:textbox id="ClientNameTextBox" runat="server" Width="84px"></asp:textbox>
			<asp:button id="search" runat="server" Text="查询" BorderStyle="Groove"></asp:button></TD>
	</TR>
	<TR class="rbody">
		<TD class="rbodycol" colSpan="2" height="25">
			<asp:datalist id="dl_ResearchList" runat="server" Width="100%" CellSpacing="3" ShowFooter="True"
				ShowHeader="True" RepeatDirection="Vertical" DataKeyField="RecordId" BorderColor="#ccccff"
				CellPadding="3" BorderWidth="1">
				<HeaderStyle Font-Bold="True" ForeColor="White" BackColor="#ccccff"></HeaderStyle>
				<HeaderTemplate>
					<TABLE cellSpacing="0" cellPadding="0" width="100%" border="0">
						<TR>
							<TD width="10%">
								<DIV><B>序号</B></DIV>
							</TD>
							<TD width="10%">
								<DIV><B>状态</B></DIV>
							</TD>
							<TD width="50%">
								<DIV><B>客户名称</B></DIV>
							</TD>
							<TD width="20%">
								<DIV><B>服务调查</B></DIV>
							</TD>
						</TR>
					</TABLE>
				</HeaderTemplate>
				<AlternatingItemStyle BackColor="#ccccff"></AlternatingItemStyle>
				<ItemStyle BorderWidth="1"></ItemStyle>
				<ItemTemplate>
					<TABLE cellSpacing="0" cellPadding="0" width="100%" border="0">
						<TR>
							<TD width="10%">
								<%# DataBinder.Eval(Container, "DataItem.RecordId") %>
							</TD>
							<TD width="10%">
								<asp:Label Runat="server" ID="StatusLabel"></asp:Label>
							</TD>
							<TD width="50%">
							    <a  href=<%=PageBase.UrlBase+"/ResearchMan.aspx"%> style="OVERFLOW: hidden; WIDTH: 200px; CLIP: rect(auto 80% auto 1%)"
							       onclick="javascript:newwin=window.open('RecordDetails.aspx?RecordId=<%# DataBinder.Eval(Container.DataItem,"RecordId")%>','newwin','x=500,y=800,height=410,width=400,status=yes,toolbar=no,menubar=no,scrollbars=yes,location=no,resizable=yes');newwin.focus();">
									<%# DataBinder.Eval(Container, "DataItem.ClientName") %>
								</a>
							</TD>
							<TD width="20%">
								<asp:HyperLink Visible =False NavigateUrl='<%# DataBinder.Eval(Container.DataItem,"RecordId",PageBase.UrlBase+"/ResearchAdd.aspx?RecordId={0}")%>' Runat=server ID="ResearchAddLink"> 添加</asp:HyperLink>
								<asp:HyperLink Visible =False NavigateUrl='<%# DataBinder.Eval(Container.DataItem,"RecordId",PageBase.UrlBase+"/ResearchEdit.aspx?RecordId={0}")%>' Runat=server ID="ResearchEditLink"> 详单</asp:HyperLink>
							</TD>
						</TR>
					</TABLE>
				</ItemTemplate>
			</asp:datalist></TD>
	</TR>
	<TR>
		<td width="40%" height="25">
		</td>
		<TD align="right"><asp:button id="ShowAll" runat="server" Text="全部显示" BorderStyle="Groove"></asp:button></TD>
	</TR>
</TABLE>
<!--END RESEARCH MAN MODULE-->

⌨️ 快捷键说明

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