📄 redetailsmodule.ascx
字号:
<%@ Control Language="c#" AutoEventWireup="false" Codebehind="ReDetailsModule.ascx.cs" Inherits="KhfwWeb.Modules.ReDetailsModule" TargetSchema="http://schemas.microsoft.com/intellisense/ie5"%>
<!--BEGIN RECORD DETAILS MODULE-->
<table cellSpacing="0" cellPadding="5" width="100%">
<TBODY>
<tr class="rheader">
<td class="rheadercol" align="left" colSpan="2" height="25">记录详细信息
</td>
</tr>
<tr class="rbody">
<td class="rbodycol" align="center" colSpan="2" height="25">
<table style="BORDER-RIGHT: #ccccff thin solid; TABLE-LAYOUT: auto; BORDER-TOP: #ccccff thin solid; BORDER-LEFT: #ccccff thin solid; BORDER-BOTTOM: #ccccff thin solid; BORDER-COLLAPSE: collapse"
width="100%">
<TBODY>
<tr>
<td>序号:<asp:label id="RecordIdLabel" runat="server" Font-Bold="True" ForeColor="Blue"></asp:label></td>
<td align="center" colSpan="2">登记时间:<asp:label id="NowTimeLabel" runat="server" Font-Bold="True" ForeColor="Blue"></asp:label></td>
</tr>
<tr style="BACKGROUND-COLOR: #ccccff">
<td width="30%">客户名称:
</td>
<td><asp:label id="ClientNameLabel" runat="server" Font-Bold="True" ForeColor="Blue"></asp:label></td>
</tr>
<tr>
<td width="30%">联系人:
</td>
<td><asp:label id="CNameLabel" runat="server" Font-Bold="True" ForeColor="Blue"></asp:label></td>
</tr>
<tr style="BACKGROUND-COLOR: #ccccff">
<td width="30%">联系电话:
</td>
<td><asp:label id="PhoneLabel" runat="server" Font-Bold="True" ForeColor="Blue"></asp:label></td>
</tr>
<tr>
<td width="30%">严重级别:
</td>
<td><asp:dropdownlist id="LevelList" runat="server" Enabled="False" BorderStyle="Groove">
<asp:ListItem Value="0" Selected="True">请填写</asp:ListItem>
<asp:ListItem Value="1">级别一</asp:ListItem>
<asp:ListItem Value="2">级别二</asp:ListItem>
<asp:ListItem Value="2">级别三</asp:ListItem>
</asp:dropdownlist></td>
</tr>
<tr style="BACKGROUND-COLOR: #ccccff">
<td width="30%">问题描述:
</td>
<td><asp:textbox id="RDetailsTextBox" BorderStyle="Groove" Enabled="False" runat="server" Height="86px"
TextMode="MultiLine" Width="200"></asp:textbox>
</td>
</tr>
<tr>
<td width="30%">状态:
</td>
<td><asp:dropdownlist id="StatusList" runat="server" Enabled="False" BorderStyle="Groove">
<asp:ListItem Value="0" Selected="True">请填写</asp:ListItem>
<asp:ListItem Value="1">待分配</asp:ListItem>
<asp:ListItem Value="2">已分配</asp:ListItem>
<asp:ListItem Value="3">已解决</asp:ListItem>
</asp:dropdownlist>(必填)
</td>
</tr>
<tr style="BACKGROUND-COLOR: #ccccff">
<td width="30%">录入人:
</td>
<td><asp:label id="LogPersonLabel" runat="server" Font-Bold="True" ForeColor="Blue"></asp:label></td>
</tr>
<tr>
<td width="30%">完成时间:
</td>
<td><asp:label id="FinishDateLabel" runat="server" Font-Bold="True" ForeColor="Blue"></asp:label></td>
</tr>
<tr style="BACKGROUND-COLOR: #ccccff">
<td width="30%">备注:
</td>
<td><asp:label id="RemarksLabel" runat="server" Font-Bold="True" ForeColor="Blue"></asp:label></td>
</tr>
<tr>
<td width="30%">
是否填写服务调查:
<td><asp:radiobuttonlist id="ResearchList" Runat="server" RepeatColumns="2" Enabled="False">
<asp:ListItem Selected="True">是</asp:ListItem>
<asp:ListItem>否</asp:ListItem>
</asp:radiobuttonlist></td>
</tr>
</TBODY>
</table>
</td>
</tr>
</TBODY>
</table>
<!--END RECORD DETAILS MODULE-->
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -