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

📄 dir_vip.asp

📁 中介之家房产中介系统 V4.0企业共享版
💻 ASP
📖 第 1 页 / 共 2 页
字号:
<!--#include file=conn/conn.asp -->
<!--#include file=inc/top.asp -->
<% dim typeto
typeto=trim(request("type")) %>
<% 
keyword=request("type")
%>

<title>房源信息查询</title>

<script language= "javascript">
function newpage(htmlurl) {
var newwin=window.open(htmlurl,"newWin","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,top=2,left=2,width=600,height=350");
newwin.focus();
return false;
}
</script>
<%
   dim MaxPerPage
   dim sql 
   dim rs
   dim gstBookID
   dim totalPut   
   dim CurrentPage
   dim TotalPages
    if not isempty(request("page")) then
      currentPage=cint(request("page"))
   else
      currentPage=1
   end if
%>

<html>
<head>
<style>
<!--
{  }
.9size {  font-family: "宋体"; font-size: 9pt; color: #000000; text-decoration: none}
-->
</style>
</head>
  <LINK 
href="images/realty.css" rel=stylesheet type=text/css>

 <body bgcolor="#FFFFFF" link="#000000" vlink="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" >
                        <div align="center">
                          <center>
                          <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="778" id="AutoNumber3" bgcolor="#F2F6DB" height="511">
                            <tr>
    <TD width=15 bgcolor="#F2F6DB" height="22"> </TD>
    <TD height=22 width=168 bgcolor="#F2F6DB"> </TD>
    <TD bgcolor="#F2F6DB" height="22"> </TD>
    <TD width=28 bgcolor="#F2F6DB" height="22"> </TD>
                            </tr>
                            <tr>
    <TD bgcolor="#F2F6DB" height="489"> </TD>
    <TD background=images/leftbg.jpg vAlign=top bgcolor="#F2F6DB" height="489">
      <TABLE border=0 cellPadding=0 cellSpacing=0 width=156>
        <TBODY>
        <TR>
          <TD align=middle bgColor=#e2ec91 class=title2 height=26 vAlign=bottom 
          width=156><FONT color=#0f680f>快速登记</FONT></TD></TR>
        <TR>
          <TD align=middle bgColor=#e2ec91 class=title2>
          <IMG 
            src="images/dot.gif"></TD></TR>
        <TR>
          <TD bgColor=#e2ec91 height=20>
          <table border="0" cellPadding="0" cellSpacing="0" width="156" height="47">
            <tr>
              <td bgColor="#e2ec91" height="25">&nbsp;·
              <a href="add.asp?type=sale">出售二手房登记</a></td>
            </tr>
            <tr>
              <td bgColor="#e2ec91" height="22">&nbsp;·
              <span style="letter-spacing: 2"><a href="add.asp?type=rent">房屋租赁登记</a></span></td>
            </tr>
            <tr>
              <td bgColor="#e2ec91" height="22">&nbsp;·
              <span style="letter-spacing: 2"><a href="need.asp">求购求租登记</a></span></td>
            </tr>
            <tr>
              <td bgColor="#e2ec91" height="22">&nbsp;·
              <a href="dir_vip.asp?type=sale">精品房出售信息</a></td>
            </tr>
          </table>
          </TD></TR>
        </TBODY></TABLE>
      <TABLE border=0 cellPadding=0 cellSpacing=0 width=156>
        <TBODY>
        <TR>
          <TD height=10>
          <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber5" height="390">
            <tr>
          <TD align=middle class=title2 height=20> </TD>
            </tr>
                 <FORM method=POST name=form1  action="dir_search.asp?type=sale">
            <tr>
          <TD class=14 height="12">
         
            <p align="center"><b><font color="#006699">二手房搜索</font></b></TD>
            </tr>
            <tr>
          <TD height="153">
            <div align="center">
            <center>
            <TABLE border=0 cellPadding=0 cellSpacing=0 width="100%" style="border-collapse: collapse" bordercolor="#111111" height="136">
              <TBODY>
              <tr>
                <TD class=12 height=27 width=44><FONT 
                  color=#ffffff>&nbsp;</FONT><font color="#000000">类别:</font></TD>
                <TD class=12 height=27 width="111">  
                     <span style="font-size: 9pt"> 
                                        <select name="txtfangx" class="form">
                                          <option value="%" selected>--不限--</option>
                                          <option value="高层">高层</option>
                                          <option value="小高层">小高层</option>
                                          <option value="多层">多层</option>
                                          <option value="别墅">别墅</option>
                                          <option value="写字楼">写字楼</option>
                                          <option value="商住综合">商住综合</option>
                                          <option value="门面房">门面房</option>
                                          <option value="厂房仓库">厂房仓库</option>
                                          <option value="平房">平房</option>
                                          </select></span> </TD>
              </tr>
              <tr>
                <TD class=12 height=24 width=44><FONT 
                  color=#ffffff>&nbsp;<FONT color=#000000>区域:</FONT></FONT></TD>
                <TD class=12 height=24 width="111">  
                     <select name="txtDiduan" size="1" class=f11>
                     <option selected value="%">--不限--</option>
                     <%dim rs2,sql2,sel
                          set rs2=server.createobject("adodb.recordset")
                          sql2="select * from fctype"
                          rs2.open sql2,conn,1,1                   
                     
                     do while not rs2.eof
        if typeID=cstr(rs2("typeID")) then
               sel="selected"
        else
               sel=""
        	
        response.write "<option " & sel & " value='" +  Cstr(rs2("type")) + "'>" + rs2("type") + "</option>"
       rs2.movenext
   end if   
 loop
rs2.close
%>

                    </select> </TD>
              </tr>
              <TR>
                <TD class=12 height=23 width=44><FONT 
                  color=#ffffff>&nbsp;</FONT><FONT 
                  color=#000000>面积:</FONT></TD>
                <TD class=12 height=23 width="111">  
                     <span class=9size>
                     <span style="font-size: 9pt" id="fps0"> 
                  <select name=txtMianj class=form>
                      <option value=% selected>---不 限---</option>
                      <option value=A>50平方以下</option>
                      <option value=B>50-70平方</option>
                      <option value=C>70-90平方</option>
                      <option value=D>90-110平方</option>
                      <option value=E>110-150平方</option>
                      <option value=F>150平方以上</option>
                    </select></span></span> </TD></TR>
              <tr>
                <TD class=12 height=27 width="44"><FONT color=#ffffff>&nbsp;</FONT><FONT 
                  color=#000000>总价:</FONT></TD>
                <TD class=12 height=27 width="111"><span class=9size> 
                  <span style="font-size: 9pt" id="fps1"> 
                    <select name=txtJiag class=form>
                      <option value=% selected>---不 限---</option>
                      <option value=A>8万以下</option>
                      <option value=B>8-10万</option>
                      <option value=C>10-12万</option>
                      <option value=D>12-15万</option>
                      <option value=E>15-20万</option>
                      <option value=F>20-25万</option>
                      <option value=G>25-30万</option>
                      <option value=H>30-40万</option>
                      <option value=I>40-50万</option>
                      <option value=J>50-100万</option>
                      <option value=K>100-200万</option>
                      <option value=L>200万以上</option>
                    </select></span></span> </TD>
              </tr>
              <TR>
                <TD class=12 height=27 width="44"><FONT color=#ffffff>&nbsp;</FONT><FONT 
                  color=#000000>时间:</FONT></TD>
                <TD class=12 height=27 width="111"> 
                    <span class=9size><span style="font-size: 9pt" id="fps2"> 
                      <select name=txtsj class=form>
                        <option value=3600 selected>---不 限---</option>
                        <option value=7>七天内信息</option>
                        <option value=15>半月内信息</option>
                        <option value=30>一月内信息</option>
                        <option value=90>三月内信息</option>
                      </select></span></span>
                   </TD></TR>
              <TR>
                <TD align=middle colSpan=2 height=9 width="155"><INPUT name=Submit type=submit value=搜索> <INPUT name=Submit2 type=reset value=重置> </TD></TR></TBODY></TABLE>
            </center>
            </div>
          </TD>
          </form>
            </tr>
               <FORM action=dir_search.asp?type=rent method=POST name=form2 >
            <tr>
          <TD height="37">
          <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber1" height="37">
         
            <tr>
              <td width="100%" valign="bottom" height="37">
              <p align="center"><span style="letter-spacing: 1"><b>
              <font color="#006699" style="font-size: 10.5pt">出租房搜索</font></b></span></td>
            </tr>
          </table>
          </TD>
            </tr>
            <tr>
          <TD align=middle class=font height=153>
          <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="155" id="AutoNumber2" height="136">
            <tr>
                <TD class=12 height=27 width=44><FONT 
                  color=#ffffff>&nbsp;</FONT><font color="#000000">类别:</font></TD>
                <TD class=12 height=27 width="111">  
                     <span style="font-size: 9pt"> 
                                        <select name="txtfangx" class="form">
                                          <option value="%" selected>--不限--</option>
                                          <option value="高层">高层</option>
                                          <option value="小高层">小高层</option>
                                          <option value="多层">多层</option>
                                          <option value="别墅">别墅</option>
                                          <option value="写字楼">写字楼</option>
                                          <option value="商住综合">商住综合</option>
                                          <option value="门面房">门面房</option>
                                          <option value="厂房仓库">厂房仓库</option>
                                          <option value="平房">平房</option>
                                          </select></span> </TD>
              </tr>
            <tr>
                <TD class=12 height=24 width=44><FONT 
                  color=#ffffff>&nbsp;<FONT color=#000000>区域:</FONT></FONT></TD>
                <TD class=12 height=24 width="111">  
                     <select name="txtDiduan" size="1" class=f11>
                     <option selected value="%">--不限--</option>
                     <%  set rs3=server.createobject("adodb.recordset")
                          sql3="select * from fctype"
                          rs3.open sql3,conn,1,1                   
                     
                     do while not rs3.eof
        if typeID=cstr(rs3("typeID")) then
               sel="selected"
        else
               sel=""
        	
        response.write "<option " & sel & " value='" +  Cstr(rs3("type")) + "'>" + rs3("type") + "</option>"
       rs3.movenext
   end if   
 loop
rs3.close
%>

                    </select> </TD>
              </tr>
            <tr>
                <TD class=12 height=23 width=44><FONT 
                  color=#ffffff>&nbsp;</FONT><FONT 
                  color=#000000>面积:</FONT></TD>
                <TD class=12 height=23 width="111">  
                     <span class=9size>
                        <span style="font-size: 9pt" id="fps4"> 
                  <select name=txtMianj class=form>
                            <option value=% selected>---不 
                            限---</option>

⌨️ 快捷键说明

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