📄 questionscomplexsearch.aspx
字号:
<%@ Page Language="C#" MasterPageFile="~/Admin/MasterPage.master" AutoEventWireup="true" CodeBehind="QuestionsComplexSearch.aspx.cs" Inherits="PowerEasy.WebSite.Admin.Crm.QuestionsComplexSearch" Title="无标题页" %>
<asp:Content ID="Content1" ContentPlaceHolderID="CphNavigation" runat="server">
<pe:ExtendedSiteMapPath ID="SmpNavigator" runat="server" SiteMapProvider="AdminMapProvider">
</pe:ExtendedSiteMapPath>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="CphContent" runat="server">
<table cellpadding="3" class="border" style="width: 100%">
<tr>
<td class="title" colspan="2" style="height: 21px; text-align: center">
<strong>客户问题复杂查询</strong></td>
</tr>
<tr class="tdbg">
<td class="tdbgleft" style="width: 20%; text-align: right">
<strong>问题类别:</strong></td>
<td>
<asp:CheckBoxList ID="ChklQuestionType" runat="server" RepeatColumns="5" RepeatDirection="Horizontal" DataTextField="Value" DataValueField="Key">
</asp:CheckBoxList></td>
</tr>
<tr class="tdbg">
<td class="tdbgleft" style="text-align: right">
<strong>
问题难度:</strong></td>
<td>
<asp:RadioButtonList ID="RadlScore" runat="server" CellSpacing="3" RepeatColumns="3"
RepeatDirection="Horizontal">
</asp:RadioButtonList></td>
</tr>
<tr class="tdbg">
<td class="tdbgleft" style="text-align: right">
<strong>回复状态:</strong></td>
<td>
<asp:RadioButtonList ID="RadlIsReply" runat="server" RepeatDirection="Horizontal"
Width="205px">
<asp:ListItem Value="1">已回复</asp:ListItem>
<asp:ListItem Value="2">未回复</asp:ListItem>
<asp:ListItem Selected="True" Value="0">所有状态</asp:ListItem>
</asp:RadioButtonList></td>
</tr>
<tr class="tdbg">
<td class="tdbgleft" style="text-align: right">
<strong>解决状态:</strong></td>
<td>
<asp:RadioButtonList ID="RadlIsSolved" runat="server" RepeatDirection="Horizontal"
Width="205px">
<asp:ListItem Value="1">已解决</asp:ListItem>
<asp:ListItem Value="2">未解决</asp:ListItem>
<asp:ListItem Selected="True" Value="0">所有状态</asp:ListItem>
</asp:RadioButtonList></td>
</tr>
<tr class="tdbg">
<td class="tdbgleft" style="text-align: right">
<strong>
公开状态:</strong></td>
<td >
<asp:RadioButtonList ID="RadlIsPublc" runat="server" RepeatDirection="Horizontal"
Width="205px">
<asp:ListItem Value="1">公开的</asp:ListItem>
<asp:ListItem Value="2">不公开</asp:ListItem>
<asp:ListItem Selected="True" Value="0">所有状态</asp:ListItem>
</asp:RadioButtonList></td>
</tr>
<tr class="tdbg">
<td class="tdbgleft" style="text-align: right">
<strong>
我的问题:</strong></td>
<td>
<asp:RadioButtonList ID="RadlIsMine" runat="server" RepeatDirection="Horizontal"
Width="205px">
<asp:ListItem Value="1">属 于 </asp:ListItem>
<asp:ListItem Value="2">不属于</asp:ListItem>
<asp:ListItem Selected="True" Value="0">所有状态</asp:ListItem>
</asp:RadioButtonList></td>
</tr>
<tr class="tdbg">
<td class="tdbgleft" style="text-align: right">
<strong>问题标题:</strong></td>
<td>
<asp:TextBox ID="TxtProblemTitle" runat="server" MaxLength="20" Width="390px"></asp:TextBox>
</td>
</tr>
<tbody class="border">
<tr>
<td class="tdbgleft" style="text-align: right">
<strong>提问时间:</strong></td>
<td class="tdbg">
起始日期<pe:DatePicker ID="DpkBegin" runat="server"></pe:DatePicker> 结束日期<pe:DatePicker
ID="DpkEnd" runat="server"></pe:DatePicker></td>
</tr>
</tbody>
<tr class="tdbg">
<td class="tdbgleft" style="text-align: right">
<strong>回复时间:</strong></td>
<td>
起始日期<pe:DatePicker ID="DpkReplyBegin" runat="server"></pe:DatePicker> 结束日期<pe:DatePicker
ID="DpkReplyEnd" runat="server"></pe:DatePicker></td>
</tr>
<tr class="tdbg">
<td class="tdbgleft" style="text-align: right">
<strong>提 问 人:</strong></td>
<td>
<asp:TextBox ID="TxtProblemCreator" runat="server" MaxLength="15" Width="150px"></asp:TextBox></td>
</tr>
<tr class="tdbg">
<td class="tdbgleft" style="text-align: right">
<strong>回 复 人:</strong></td>
<td>
<asp:TextBox ID="TxtAdmin" runat="server" MaxLength="15" onchange="ChangeAdmin()" Width="150px"></asp:TextBox>
<asp:DropDownList ID="DropAdmin" runat="server" onchange="SelectAdmin()" DataTextField="AdminName" DataValueField="AdminId">
</asp:DropDownList></td>
</tr>
<tr>
<td class="tdbg" colspan="2" style="height: 35px; text-align: center">
<asp:Button ID="BtnSearch" runat="server" OnClick="BtnSearch_Click"
Text="查询" /> <input id="Reset1" type="reset" value=" 复位 " /></td>
</tr>
</table>
<script type="text/javascript">
var txtAdmin = document.getElementById('<%=TxtAdmin.ClientID %>');
var dropAdmin = document.getElementById('<%=DropAdmin.ClientID %>');
function SelectAdmin()
{
if(dropAdmin.selectedIndex == 0)
{
txtAdmin.value='';
}
else
{
txtAdmin.value = dropAdmin.options[dropAdmin.selectedIndex].text;
}
}
function ChangeAdmin()
{
dropAdmin.selectedIndex=0;
}
</script>
</asp:Content>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -