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

📄 dispatchmanmodule.ascx

📁 《C#数据库项目案例导航》一书的配套光盘
💻 ASCX
字号:
<%@ Control Language="c#" AutoEventWireup="false" Codebehind="DispatchManModule.ascx.cs" Inherits="KhfwWeb.Modules.DispatchManModule" TargetSchema="http://schemas.microsoft.com/intellisense/ie5"%>
<%@ Import Namespace="KhfwWeb"%>
<!--BEGIN RECORD DISPATCH MODULE-->
<TABLE cellSpacing="0" cellPadding="5" width="100%">
	<TR class="rheader">
		<TD class="rheadercol" align="left" colSpan="2" height="25"><asp:Label ID="TitleLabel" Runat="server"></asp:Label>
		</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" align="center" colSpan="2" height="25"><asp:repeater id="rp_RecordDispatch" Runat="server">
				<HeaderTemplate>
					<table style="FONT-WEIGHT: bolder; FONT-SIZE: 13px; COLOR: #0000ff" cellPadding="1" width="90%">
						<tr>
							<td width="10%">序号</td>
							<td width="35%">问题描述</td>
							<td width="14%">级别</td>
							<td width="14%">提交日期</td>
							<td width="16%">任务处理</td>
						</tr>
					</table>
				</HeaderTemplate>
				<ItemTemplate>
					<table cellpadding="0" width="90%" style="FONT-SIZE: 13px; COLOR:#0033ff">
						<tr>
							<td width="10%"><%# DataBinder.Eval(Container.DataItem,"RecordId")%>
							</td>
							<td width="35%">
							    <a  href="<%=RDetailsLink%>" 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,"RDetails")%>
								</a>
							</td>
							<td width="14%">
								<asp:Label Runat="server" ID="LevelLabel"></asp:Label>
							</td>
							<td width="14%"><%# DataBinder.Eval(Container.DataItem,"CreateDate")%>
							</td>
							<td width="16%">
								<asp:HyperLink Visible =False NavigateUrl='<%# DataBinder.Eval(Container.DataItem,"RecordId",PageBase.UrlBase+"/Dispatch.aspx?RecordId={0}&Type=1")%>' Runat=server ID="DispatchLink"> 记录分配</asp:HyperLink>
								<asp:HyperLink Visible =False NavigateUrl='<%# DataBinder.Eval(Container.DataItem,"RecordId",PageBase.UrlBase+"/DispDetails.aspx?RecordId={0}")%>' Runat=server ID="DispDetailsLink"> 分配信息</asp:HyperLink>
								<asp:HyperLink Visible =False NavigateUrl='<%# DataBinder.Eval(Container.DataItem,"RecordId",PageBase.UrlBase+"/Dispatch.aspx?RecordId={0}&Type=2")%>' Runat=server ID="ReDispatchlink"> 重新分配</asp:HyperLink>
								<asp:HyperLink Visible =False NavigateUrl='<%# DataBinder.Eval(Container.DataItem,"RecordId",PageBase.UrlBase+"/WorkLogMan.aspx?RStatus=3&RecordId={0}")%>' Runat=server ID="WorkLogLink"> 工作记录</asp:HyperLink>
							</td>
						</tr>
					</table>
				</ItemTemplate>
				<SeparatorTemplate>
					<table cellpadding="0" width="90%">
						<tr>
							<td colspan="4" height="1" bgcolor="#0033ff"></td>
						</tr>
					</table>
				</SeparatorTemplate>
				<FooterTemplate>
					<table cellpadding="0" width="90%">
						<tr>
							<td colspan="4" height="4" bgcolor="#0033ff"></td>
						</tr>
					</table>
				</FooterTemplate>
			</asp:repeater></TD>
	</TR>
	<TR>
		<td></td>
		<TD align="right"><asp:button id="ShowAll" runat="server" Text="全部显示" BorderStyle="Groove"></asp:button></TD>
	</TR>
</TABLE>
<!--END RECORD DISPATCH MODULE-->

⌨️ 快捷键说明

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