📄 search1.ascx
字号:
<%@ Control Language="c#" AutoEventWireup="false" Codebehind="Search1.ascx.cs" Inherits="Zj.Admin.Inc.Search1" TargetSchema="http://schemas.microsoft.com/intellisense/ie5" %>
<script language="javascript">
<!--
function IsShowTR()
{
if (document.all.radType[1].checked == true)
{
document.all['TrPrice1'].style.display = "none";
document.all['TrPrice2'].style.display = "";
}
else
{
document.all['TrPrice1'].style.display = "";
document.all['TrPrice2'].style.display = "none";
}
}
//-->
</script>
<table border="0" width="100%">
<tr>
<td class="AdminPageTitle">出租出售信息查询</td>
</tr>
<TR>
<TD><INPUT title="出租" type="radio" CHECKED value="1" name="radType" onclick="IsShowTR()">出租
<INPUT type="radio" name="radType" value="2" onclick="IsShowTR()">出售</TD>
</TR>
<tr>
<td>类别:
<asp:dropdownlist id="dropHouseType" runat="server"></asp:dropdownlist></td>
</tr>
<TR>
<TD style="HEIGHT: 13px">中介:
<asp:dropdownlist id="dropAgency" runat="server">
<asp:ListItem Value="0">不限...</asp:ListItem>
<asp:ListItem Value="1">个人信息</asp:ListItem>
<asp:ListItem Value="2">中介信息</asp:ListItem>
</asp:dropdownlist></TD>
</TR>
<tr>
<td style="HEIGHT: 13px">区域:
<asp:dropdownlist id="dropArea" runat="server"></asp:dropdownlist> </td>
</tr>
<tr>
<td>面积:
<asp:DropDownList id="dropSquare" runat="server">
<asp:ListItem Value="0">不限...</asp:ListItem>
<asp:ListItem Value="0,50">50平米以下</asp:ListItem>
<asp:ListItem Value="50,100">50-100平米</asp:ListItem>
<asp:ListItem Value="100,150">100-150平米</asp:ListItem>
<asp:ListItem Value="150,200">150-200平米</asp:ListItem>
<asp:ListItem Value="200,M">200平米以上</asp:ListItem>
</asp:DropDownList> </td>
</tr>
<tr id="TrPrice1">
<td>租金:
<asp:DropDownList id="dropPrice1" runat="server">
<asp:ListItem Value="0">不限...</asp:ListItem>
<asp:ListItem Value="0,500">500元以下</asp:ListItem>
<asp:ListItem Value="500,1000">500-1000元</asp:ListItem>
<asp:ListItem Value="1000,1500">1000-1500元</asp:ListItem>
<asp:ListItem Value="1500,2000">1500-2000元</asp:ListItem>
<asp:ListItem Value="2000,2500">2000-2500元</asp:ListItem>
<asp:ListItem Value="2500,M">2500元以上</asp:ListItem>
</asp:DropDownList> </td>
</tr>
<tr id="TrPrice2" style="DISPLAY: none">
<td>总价:
<asp:DropDownList id="dropPrice2" runat="server">
<asp:ListItem Value="0">不限...</asp:ListItem>
<asp:ListItem Value="0,10">10万元以下</asp:ListItem>
<asp:ListItem Value="10,20">10-20万元</asp:ListItem>
<asp:ListItem Value="20,30">20-30万元</asp:ListItem>
<asp:ListItem Value="30,40">30-40万元</asp:ListItem>
<asp:ListItem Value="40,50">40-50万元</asp:ListItem>
<asp:ListItem Value="50,60">50-60万元</asp:ListItem>
<asp:ListItem Value="60,M">60万元以上</asp:ListItem>
</asp:DropDownList> </td>
</tr>
<tr>
<td>时间:
<asp:DropDownList id="dropTime" runat="server">
<asp:ListItem Value="0">不限...</asp:ListItem>
<asp:ListItem Value="3">三天以内</asp:ListItem>
<asp:ListItem Value="7">一周以内</asp:ListItem>
<asp:ListItem Value="15">半月以内</asp:ListItem>
<asp:ListItem Value="30">一个月内</asp:ListItem>
<asp:ListItem Value="90">三个月内</asp:ListItem>
</asp:DropDownList></td>
</tr>
<TR>
<TD>地点:
<asp:textbox id="txtKeyword" runat="server" Width="120px"></asp:textbox></TD>
</TR>
<tr>
<td><asp:ImageButton id="imgSearch" runat="server" Height="19" Width="43" src="Images/sou.gif" BorderWidth="0"></asp:ImageButton></td>
</tr>
</table>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -