📄 worklogmanmodule.ascx
字号:
<%@ Import Namespace="KhfwWeb"%>
<%@ Control Language="c#" AutoEventWireup="false" Codebehind="WorkLogManModule.ascx.cs" Inherits="KhfwWeb.Modules.WorkLogManModule" TargetSchema="http://schemas.microsoft.com/intellisense/ie5"%>
<!--BEGIN WORKLOGMAN 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"> </TD>
</TR>
<TR class="rbody">
<TD class="rbodycol" align="left" width="40%" colSpan="2" height="25"><b><font color=blue>工作记录列表</font></b></TD>
</TR>
<TR class="rbody">
<TD class="rbodycol" colSpan="2" height="25">
<asp:datalist id="dl_DispatchList" runat="server" Width="90%" CellSpacing="3" ShowFooter="True"
ShowHeader="True" RepeatDirection="Vertical" DataKeyField="RecordId" CellPadding="3">
<HeaderTemplate>
<table cellpadding="0" width="100%">
<tr>
<td colspan="4" height="1" bgcolor="#0033ff"></td>
</tr>
</table>
</HeaderTemplate>
<SeparatorTemplate>
<table cellpadding="0" width="100%">
<tr>
<td colspan="4" height="1" bgcolor="#0033ff"></td>
</tr>
</table>
</SeparatorTemplate>
<ItemTemplate>
<TABLE cellSpacing="1" cellPadding="1" width="100%">
<TR>
<TD width="5%">
<font color="blue">No:<%# DataBinder.Eval(Container, "DataItem.RecordId") %></font>
</TD>
<TD width="8%">
<font color="blue">
<asp:Label Runat="server" ID="LevelLabel"></asp:Label></font>
</TD>
<TD>
<font color="blue">问题:</font>
<a href="<%=RDetailsLink%>" style="OVERFLOW: hidden; CLIP: rect(auto 80% auto 0%)"
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>
</TR>
<TR>
<TD colspan="3" width=80%>
<font color="blue">处理意见:</font>
<a href="<%=RDetailsLink%>" style="OVERFLOW: hidden;CLIP: rect(auto 80% auto 0%)"
onclick="javascript:newwin=window.open('DispatchDetails.aspx?RecordId=<%# DataBinder.Eval(Container.DataItem,"RecordId")%>','newwin','x=500,y=800,height=430,width=410,status=yes,toolbar=no,menubar=no,scrollbars=yes,location=no,resizable=yes');newwin.focus();">
<%# DataBinder.Eval(Container, "DataItem.Opinion") %>
</a>
<font color="blue">[<%# DataBinder.Eval(Container, "DataItem.Engineer") %>
<%# DataBinder.Eval(Container, "DataItem.DealWithDate") %>
]</font>
</TD>
</TR>
<TR>
<TD colspan="3" style="padding-left=15">
<asp:repeater id="rp_WorkLogList" Runat="server">
<ItemTemplate>
<table cellSpacing="1" cellpadding="1" width="100%">
<tr>
<td width="8%">
<font color="blue">记录:<%# DataBinder.Eval(Container.DataItem,"LogId")%>
</font>
</td>
<td>
<a href="<%=RDetailsLink%>" style="OVERFLOW: hidden; WIDTH: 200px; CLIP: rect(auto 80% auto 1%)"
onclick="javascript:newwin=window.open('WorkLogDetails.aspx?LogId=<%# DataBinder.Eval(Container.DataItem,"LogId")%>','newwin','x=500,y=800,height=370,width=380,status=yes,toolbar=no,menubar=no,scrollbars=yes,location=no,resizable=yes');newwin.focus();">
<%# DataBinder.Eval(Container.DataItem,"Rmethod")%>
</a> <font color="blue">[<%# DataBinder.Eval(Container.DataItem,"StartDate")%>——
<%# DataBinder.Eval(Container.DataItem,"EndDate")%>
]</font>
</td>
</tr>
</table>
</ItemTemplate>
</asp:repeater>
</TD>
</TR>
<TR>
<TD align=right style="padding-right=100px" colspan=5>
<asp:HyperLink Visible =False NavigateUrl='<%# DataBinder.Eval(Container, "DataItem.RecordId",PageBase.UrlBase+"/WorkLogAdd.aspx?RecordId={0}") %>' Runat=server ID="NewLogLink"> 添加新记录</asp:HyperLink>
<asp:HyperLink Visible =False NavigateUrl='<%# DataBinder.Eval(Container, "DataItem.RecordId",PageBase.UrlBase+"/RecordSolved.aspx?RecordId={0}") %>' Runat=server ID="SolvedLink">问题解决</asp:HyperLink>
</TD>
</TR>
</TABLE>
</ItemTemplate>
<FooterTemplate>
<table cellpadding="0" width="100%">
<tr>
<td colspan="4" height="4" bgcolor="#0033ff"></td>
</tr>
</table>
</FooterTemplate>
</asp:datalist></TD>
</TR>
</TABLE>
<!--END WORKLOGMAN MODULE-->
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -