| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 514 人关注过本帖
标题:下拉选择分类刷不出数据
只看楼主 加入收藏
天蝎风
Rank: 1
来 自:广西
等 级:新手上路
帖 子:64
专家分:5
注 册:2010-11-7
结帖率:100%
收藏
 问题点数:0 回复次数:0 
下拉选择分类刷不出数据
程序代码:
<%if request.Cookies("shiwei_username")="" then%>
<script language="javascript">top.location.href="../index.asp"</script>
<% 
  response.end
end if
%>
<!-- #include file="../conn2.asp" -->
<!-- #include file="../const.asp" -->

<html>
<head>
<title><%=gongsi%>-收费统计</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../style/style.css" rel="stylesheet" type="text/css">
<style>body {background-color:#FFFFFF;}</style>
<script language="javascript">
function collapse(img, objName)
{
    var obj;
    obj = document.getElementById(objName);
    if (img.src.indexOf('open') != -1)
    {
    img.src = img.src.replace('open', 'close');
    obj.style.display = 'none';
    }
    else
    {
    img.src = img.src.replace('close', 'open');
    obj.style.display = '';
    }
}
function collapseall(img)
{
    var obj;
    if (img.src.indexOf('open') != -1)
    {
    img.src = img.src.replace('open', 'close');
    for (x=1;x<=<%=maxrecord%>;x++)
    {
    obj = document.getElementById("buy"+x);
    if (obj)
    {obj.style.display = 'none';}}
    }
    else
    {
    img.src = img.src.replace('close', 'open');
    for (x=1;x<=<%=maxrecord%>;x++)
    {
    obj = document.getElementById("buy"+x);
    if (obj)
    {obj.style.display = '';}
    }}
}
</script>

<script language=javascript>
function preview() {
bdhtml=window.document.body.innerHTML;
sprnstr="<!--startprint-->";
eprnstr="<!--endprint-->";
prnhtml=bdhtml.substr(bdhtml.indexOf(sprnstr)+17);
prnhtml=prnhtml.substring(0,prnhtml.indexOf(eprnstr));
window.document.body.innerHTML=prnhtml;
window.print();
window.document.body.innerHTML=bdhtml;
}
</script>
</HEAD>

<BODY>
<script>
function CheckAll(form) {
  for (var i=0;i<form.elements.length;i++) {
    var e = form.elements[i];
    if (e.name != 'chkall')  e.checked = form.chkall.checked;
  }
}
</script>
<%if fla74="0" and request.Cookies("shiwei_id")<>"1" then%>
<br><center><img src="../images/note.gif" align="absmiddle">&nbsp;<font color="#FF0000">你不具备此权限,请与管理员联系!</font></center>
<% 
  response.end
end if

'取得当前页码
currentpage=request("page")
'response.write currentpage
'response.end
if currentpage<1 or currentpage="" then
  currentpage="1"
end if

'取得搜索关键字 
nowstartdate=request("startdate")
if nowstartdate="" then
  nowstartdate=date()-day(date()-1)
end if
nowenddate=request("enddate")
if nowenddate="" then
  nowenddate=date()
end if
nowxiaoqu=request("xiaoqu")
nowbigclass=request("bigclass")
nowsmallclass=request("smallclass")
if nowbigclass="" then nowsmallclass=""
nowkeyword=request("keyword") 

    if request.Cookies("shiwei_id")="1" or fla88="1" then
      sql="select * from xiaoqu order by id"
      set rs_xiaoqu=conn.execute(sql)
    else
      sql="select * from xiaoqu where instr(fuzeren,',"&request.Cookies("shiwei_id")&",')>0 order by id"
      set rs_xiaoqu=conn.execute(sql)
      if rs_xiaoqu.eof then
        nowxiaoqu="0"
      elseif request("xiaoqu")="" then
        nowxiaoqu=rs_xiaoqu("id")
      end if     
    end if

  sql="select * from sell where type=0 and louyu and isok"
  if request.Cookies("shiwei_id")<>1 and lookbuysell="yes" and fla89="0" then
    sql=sql&" and id_login="&request.Cookies("shiwei_id")
  end if
  if nowstartdate<>"" then
    sql=sql&" and selldate-#"&nowstartdate&"#>=0"
  end if 
  if nowenddate<>"" then
    sql=sql&" and selldate-#"&nowenddate&"#<=0"
  end if

  if nowxiaoqu<>"" then
    sql=sql&" and bianhao in (select bianhao from sell where type=0 and xiaoqu1="&nowxiaoqu&" and louyu=false)"
  end if
  if nowbigclass<>"" then
    sql=sql&" and bianhao in (select bianhao from sell where type=0 and bigclass='"&nowbigclass&"' and louyu=false)"
  end if
  if nowsmallclass<>"" then
    sql=sql&" and bianhao in (select bianhao from sell where type=0 and smallclass='"&nowsmallclass&"' and louyu=false)"
  end if
  if nowkeyword<>"" then
    sql=sql&" and (bianhao = '"&nowkeyword&"' or yezhu in (select id from yezhu where username like '%"&nowkeyword&"%') or id_login in (select id from login where username like '%"&nowkeyword&"%') or bianhao in (select bianhao from sell where type=0 and (title like '%"&nowkeyword&"%' or daihao like '%"&nowkeyword&"%')))"
  end if

  if request("order1")<>"" then
    sql=sql&" order by bianhao "&request("order1")
  elseif request("order2")<>"" then
    sql=sql&" order by title1 "&request("order2")
  elseif request("order3")<>"" then
    sql=sql&" order by selldate "&request("order3")
  elseif request("order4")<>"" then
    sql=sql&" order by id_login "&request("order4")
  elseif request("order5")<>"" then
    sql=sql&" order by shuliang "&request("order5")
  elseif request("order6")<>"" then
    sql=sql&" order by price1 "&request("order6")
  elseif request("order7")<>"" then
    sql=sql&" order by price2 "&request("order7")
  elseif request("order8")<>"" then
    sql=sql&" order by (price1-price2) "&request("order8")
  elseif request("order9")<>"" then
    sql=sql&" order by yezhu "&request("order9")
  elseif request("order10")<>"" then
    sql=sql&" order by yezhu "&request("order10")               
  else
    sql=sql&" order by selldate desc" 
  end if
 
  sql2="select * from buy where type=1 and louyu and isok"
  if nowstartdate<>"" then
    sql2=sql2&" and selldate-#"&nowstartdate&"#>=0"
  end if 
  if nowenddate<>"" then
    sql2=sql2&" and selldate-#"&nowenddate&"#<=0"
  end if
  if nowxiaoqu<>"" then
    sql2=sql2&" and bianhao in (select bianhao from buy where type=1 and xiaoqu1="&nowxiaoqu&" and louyu=false)"
  end if
  if nowbigclass<>"" then
    sql2=sql2&" and bigclass='"&nowbigclass&"'"
  end if
  if nowsmallclass<>"" then
    sql2=sql2&" and smallclass='"&nowsmallclass&"'"
  end if
  if nowkeyword<>"" then
    sql2=sql2&" and (bianhao = '"&nowkeyword&"' or yezhu in (select id from yezhu where username like '%"&nowkeyword&"%') or id_login in (select id from login where username like '%"&nowkeyword&"%') or bianhao in (select bianhao from buy where type=1 and (title like '%"&nowkeyword&"%' or daihao like '%"&nowkeyword&"%')))"
  end if 
set count_sell=conn.execute(sql)
nowmoney=0
nowprice1=0
zongshuliang=0
do while count_sell.eof=false
      sql3="select sum(price1*shuliang),sum(price2*shuliang),sum(shuliang) from sell where type=0 and bianhao='"&count_sell("bianhao")&"' and louyu=false"
      if nowxiaoqu<>"" then
        sql3=sql3&" and xiaoqu1="&nowxiaoqu
      end if
  if nowbigclass<>"" then
    sql3=sql3&" and bigclass='"&nowbigclass&"'"
  end if
  if nowsmallclass<>"" then
    sql3=sql3&" and smallclass='"&nowsmallclass&"'"
  end if
      if nowkeyword<>"" then
        sql3=sql3&" and (bianhao = '"&nowkeyword&"' or yezhu in (select id from yezhu where username like '%"&nowkeyword&"%') or id_login in (select id from login where username like '%"&nowkeyword&"%') or title like '%"&nowkeyword&"%' or daihao like '%"&nowkeyword&"%')"
        end if
      set rs_sum=conn.execute(sql3)
  nowmoney=nowmoney+rs_sum(0)
  nowprice1=nowprice1+rs_sum(1)
  zongshuliang=zongshuliang+rs_sum(2)   
  count_sell.movenext
loop
set count_back=conn.execute(sql2)
nowmoney2=0
nowprice2=0
zongshuliang2=0
do while count_back.eof=false
      sql3="select sum(price1*shuliang),sum(price2*shuliang),sum(shuliang) from buy where type=1 and bianhao='"&count_back("bianhao")&"' and louyu=false"
      if nowxiaoqu<>"" then
        sql3=sql3&" and xiaoqu1="&nowxiaoqu
      end if
  if nowbigclass<>"" then
    sql3=sql3&" and bigclass='"&nowbigclass&"'"
  end if
  if nowsmallclass<>"" then
    sql3=sql3&" and smallclass='"&nowsmallclass&"'"
  end if
      if nowkeyword<>"" then
        sql3=sql3&" and (bianhao = '"&nowkeyword&"' or yezhu in (select id from yezhu where username like '%"&nowkeyword&"%') or id_login in (select id from login where username like '%"&nowkeyword&"%') or title like '%"&nowkeyword&"%' or daihao like '%"&nowkeyword&"%')"
        end if
      set rs_sum=conn.execute(sql3)
  nowmoney2=nowmoney2+rs_sum(0)
  nowprice2=nowprice2+rs_sum(1)
  zongshuliang2=zongshuliang2+rs_sum(2)       
  count_back.movenext
loop
%>
<table width="100%" border="0" cellpadding="0" cellspacing="2" align="center">
  <form name="form2">
    <tr><td width="5%" height="21">&nbsp;<img src="../images/print.jpg" align="absmiddle" style="cursor:hand;" onClick="preview();window.close()"></td>
  <td width="95%" align="right">开始日期:<input name="startdate" value="<%=nowstartdate%>" readonly style="width:80px">
<img src="../images/date.gif" align="absmiddle" style="cursor:pointer;" onClick="JavaScript:window.open('day.asp?form=form2&field=startdate&oldDate='+startdate.value,'','directorys=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,width=250,height=170,top=150,left=590');">结束日期:<input name="enddate" value="<%=nowenddate%>" readonly style="width:80px"><img src="../images/date.gif" align="absmiddle" style="cursor:pointer;" onClick="JavaScript:window.open('day.asp?form=form2&field=enddate&oldDate='+enddate.value,'','directorys=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,width=250,height=170,top=150,left=740');">
<select name="xiaoqu" onChange="form2.submit()">
 <%if request.Cookies("shiwei_id")="1" or fla88="1" then%>
  <option value="">所有小区</option>
   <%elseif rs_xiaoqu.eof then%>
    <option value="0">没有你管理的小区</option><%end if%>
     <%do while rs_xiaoqu.eof=false%>
      <option value="<%=rs_xiaoqu("id")%>"<%if trim(cstr(rs_xiaoqu("id")))=nowxiaoqu then%> selected="selected"<%end if%>><%=rs_xiaoqu("xiaoqu")%></option>
       <%
        rs_xiaoqu.movenext
        loop
       %>
       </select>
       <%
    sqlb="select * from bigclass order by id"
    set rs_bigclass=conn.execute(sqlb)
    %>
    <select name="bigclass" onChange="form2.submit()">
        <option value="">所有大类</option>
        <%do while rs_bigclass.eof=false%>
        <option value="<%=rs_bigclass("id")%>"<%if trim(cstr(rs_bigclass("id")))=nowbigclass then%> selected="selected"<%end if%>><%=rs_bigclass("bigclass")%></option>
        <%
      rs_bigclass.movenext
    loop
    %>
        </select>
        <%
    if nowbigclass="" then
      nowbigclass2=0
    else
      nowbigclass2=nowbigclass
    end if
    sqls="select * from smallclass where id_bigclass="&nowbigclass2&" order by id"
    set rs_smallclass=conn.execute(sqls)
    %>
    <select name="smallclass" onChange="form2.submit()">
        <option value="">所有小类</option>
        <%do while rs_smallclass.eof=false%>
        <option value="<%=rs_smallclass("id")%>"<%if trim(cstr(rs_smallclass("id")))=nowsmallclass then%> selected="selected"<%end if%>><%=rs_smallclass("smallclass")%></option>
        <%
      rs_smallclass.movenext
    loop
    %>
     </select>     
  <input type="text" name="keyword" size="15" value="<%=nowkeyword%>"><input type="hidden" name="hid" value="ok">&nbsp;<input type="submit" value="查询" class="button">&nbsp;</td>
</tr></form></table>
  <table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#C4D8ED">
    <tr><td><img src="../images/r_1.gif" alt="" /></td>
     <td width="100%" background="../images/r_0.gif">
    <table cellpadding="0" cellspacing="0" width="100%">
  <tr><td>&nbsp;收费统计<a href="../excle.asp"><img src="../images/excel.jpg" border="0" align="absmiddle" alt="导出Excel表格"></a></td>
<td align="right">收费总额<i><%=formatnumber(nowmoney,2,-1)%></i>元(<%=formatnumber(zongshuliang,0,-1)%>),业主退单:<u><%=formatnumber(nowmoney2,2,-1)%></u>元 (<%=formatnumber(zongshuliang2,0,-1)%>),实际收费:<b><%=formatnumber(nowmoney-nowmoney2,2,-1)%></b>元<%if request.Cookies("shiwei_id")="1" or fla87="1" then%>,利润:<b><%=formatnumber(nowmoney-nowprice1-nowmoney2+nowprice2,2,-1)%></b>元<%end if%>&nbsp;</td>
</tr></table></td>
  <td><img src="../images/r_2.gif" alt="" /></td>
    </tr>
      <tr><td></td>
    <td>
  <!--startprint-->
<table align="center" cellpadding="4" cellspacing="1" class="toptable grid" border="1">
 <form name="form1">
  <input type="hidden" name="startdate" value="<%=nowstartdate%>">
  <input type="hidden" name="enddate" value="<%=nowenddate%>">
  <input type="hidden" name="xiaoqu" value="<%=nowxiaoqu%>">
  <input type="hidden" name="bigclass" value="<%=nowbigclass%>">
  <input type="hidden" name="smallclass" value="<%=nowsmallclass%>">
  <input type="hidden" name="keyword" value="<%=nowkeyword%>">
  <input type="hidden" name="order1" value="<%=request("order1")%>">
  <input type="hidden" name="order2" value="<%=request("order2")%>">
  <input type="hidden" name="order3" value="<%=request("order3")%>">
  <input type="hidden" name="order4" value="<%=request("order4")%>">
  <input type="hidden" name="order5" value="<%=request("order5")%>">
  <input type="hidden" name="order6" value="<%=request("order6")%>">
  <input type="hidden" name="order7" value="<%=request("order7")%>">
  <input type="hidden" name="order8" value="<%=request("order8")%>">
  <input type="hidden" name="order9" value="<%=request("order9")%>">
  <input type="hidden" name="order10" value="<%=request("order10")%>">
  <input type="hidden" name="order11" value="<%=request("order11")%>">
  <input type="hidden" name="order12" value="<%=request("order12")%>">
  <input type="hidden" name="order13" value="<%=request("order13")%>">
  <input type="hidden" name="order14" value="<%=request("order14")%>">
  <input type="hidden" name="order15" value="<%=request("order15")%>">
  <tr align="center">
   <td class="category" width="10"><img src="../images/folder_close.gif" style="cursor:hand" onClick="collapseall(this)" /></td>
    <td class="category" height="30"><a href="?order1=<%if request("order1")="asc" then%>desc<%else%>asc<%end if%>&page=<%=currentpage%>&startdate=<%=nowstartdate%>&enddate=<%=nowenddate%>&xiaoqu=<%=nowxiaoqu%>&bigclass=<%=nowbigclass%>&smallclass=<%=nowsmallclass%>&keyword=<%=nowkeyword%>" class="title">编号<%if request("order1")="asc" then%><img src="../images/up2.gif" border="0" hspace="2" align="absmiddle"><%else%><img src="../images/down2.gif" border="0" hspace="2" align="absmiddle"><%end if%></a></td>
    <td class="category"><a href="?order2=<%if request("order2")="asc" then%>desc<%else%>asc<%end if%>&page=<%=currentpage%>&startdate=<%=nowstartdate%>&enddate=<%=nowenddate%>&xiaoqu=<%=nowxiaoqu%>&bigclass=<%=nowbigclass%>&smallclass=<%=nowsmallclass%>&keyword=<%=nowkeyword%>" class="title">项目名称<%if request("order2")="asc" then%><img src="../images/up2.gif" border="0" hspace="2" align="absmiddle"><%else%><img src="../images/down2.gif" border="0" hspace="2" align="absmiddle"><%end if%></a></td>
    <td class="category"><a href="?order3=<%if request("order3")="asc" then%>desc<%else%>asc<%end if%>&page=<%=currentpage%>&startdate=<%=nowstartdate%>&enddate=<%=nowenddate%>&xiaoqu=<%=nowxiaoqu%>&bigclass=<%=nowbigclass%>&smallclass=<%=nowsmallclass%>&keyword=<%=nowkeyword%>" class="title">缴费时间<%if request("order3")="asc" then%><img src="../images/up2.gif" border="0" hspace="2" align="absmiddle"><%else%><img src="../images/down2.gif" border="0" hspace="2" align="absmiddle"><%end if%></a></td>
    <td class="category"><a href="?order4=<%if request("order4")="asc" then%>desc<%else%>asc<%end if%>&page=<%=currentpage%>&startdate=<%=nowstartdate%>&enddate=<%=nowenddate%>&xiaoqu=<%=nowxiaoqu%>&bigclass=<%=nowbigclass%>&smallclass=<%=nowsmallclass%>&keyword=<%=nowkeyword%>" class="title">经办人<%if request("order4")="asc" then%><img src="../images/up2.gif" border="0" hspace="2" align="absmiddle"><%else%><img src="../images/down2.gif" border="0" hspace="2" align="absmiddle"><%end if%></a></td>
    <td class="category"><a href="?order5=<%if request("order5")="asc" then%>desc<%else%>asc<%end if%>&page=<%=currentpage%>&startdate=<%=nowstartdate%>&enddate=<%=nowenddate%>&xiaoqu=<%=nowxiaoqu%>&bigclass=<%=nowbigclass%>&smallclass=<%=nowsmallclass%>&keyword=<%=nowkeyword%>" class="title">数量<%if request("order5")="asc" then%><img src="../images/up2.gif" border="0" hspace="2" align="absmiddle"><%else%><img src="../images/down2.gif" border="0" hspace="2" align="absmiddle"><%end if%></a></td>
    <td class="category"><a href="?order6=<%if request("order6")="asc" then%>desc<%else%>asc<%end if%>&page=<%=currentpage%>&startdate=<%=nowstartdate%>&enddate=<%=nowenddate%>&xiaoqu=<%=nowxiaoqu%>&bigclass=<%=nowbigclass%>&smallclass=<%=nowsmallclass%>&keyword=<%=nowkeyword%>" class="title">缴费金额<%if request("order6")="asc" then%><img src="../images/up2.gif" border="0" hspace="2" align="absmiddle"><%else%><img src="../images/down2.gif" border="0" hspace="2" align="absmiddle"><%end if%></a></td>
    <%if request.Cookies("shiwei_id")="1" or fla87="1" then%>
    <td class="category"><a href="?order7=<%if request("order7")="asc" then%>desc<%else%>asc<%end if%>&page=<%=currentpage%>&startdate=<%=nowstartdate%>&enddate=<%=nowenddate%>&xiaoqu=<%=nowxiaoqu%>&bigclass=<%=nowbigclass%>&smallclass=<%=nowsmallclass%>&keyword=<%=nowkeyword%>" class="title">成本金额<%if request("order7")="asc" then%><img src="../images/up2.gif" border="0" hspace="2" align="absmiddle"><%else%><img src="../images/down2.gif" border="0" hspace="2" align="absmiddle"><%end if%></a></td>
    <td class="category"><a href="?order8=<%if request("order8")="asc" then%>desc<%else%>asc<%end if%>&page=<%=currentpage%>&startdate=<%=nowstartdate%>&enddate=<%=nowenddate%>&xiaoqu=<%=nowxiaoqu%>&bigclass=<%=nowbigclass%>&smallclass=<%=nowsmallclass%>&keyword=<%=nowkeyword%>" class="title">利润<%if request("order8")="asc" then%><img src="../images/up2.gif" border="0" hspace="2" align="absmiddle"><%else%><img src="../images/down2.gif" border="0" hspace="2" align="absmiddle"><%end if%></a></td><%end if%>
    <td class="category"><a href="?order9=<%if request("order9")="asc" then%>desc<%else%>asc<%end if%>&page=<%=currentpage%>&startdate=<%=nowstartdate%>&enddate=<%=nowenddate%>&xiaoqu=<%=nowxiaoqu%>&bigclass=<%=nowbigclass%>&smallclass=<%=nowsmallclass%>&keyword=<%=nowkeyword%>" class="title">业主<%if request("order9")="asc" then%><img src="../images/up2.gif" border="0" hspace="2" align="absmiddle"><%else%><img src="../images/down2.gif" border="0" hspace="2" align="absmiddle"><%end if%></a></td>
  </tr>
  <%
  set rs_buy =server.createobject("ADODB.RecordSet")   
  rs_buy.open sql,conn,1,3
  if not rs_buy.eof then
  rs_buy.pagesize=maxrecord
  rs_buy.absolutepage=currentpage
  for currentrec=1 to rs_buy.pagesize
    if rs_buy.eof then
      exit for
    end if
  %>
  <tr onMouseOver="this.className='highlight'" onMouseOut="this.className=''" onDblClick="javascript:var win=window.open('../produit/print_sell.asp?bianhao=<%=rs_buy("bianhao")%>','详细信息','width=853,height=470,top=176,left=161,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars=yes'); win.focus()">
<td align="center"><img src="../images/folder_close.gif" style="cursor:hand" onClick="collapse(this, 'buy<%=currentrec%>')" /></td>
   <td align="center" height="25"><%=rs_buy("bianhao")%></td>
      <td align="center">
        <%
    sql="select * from produit where id="&rs_buy("title1")
    set rs_produit=conn.execute(sql)
    %>
    <%if rs_produit.eof then%><%=rs_buy("title")%><%else%><%=rs_produit("title")%><%end if%></td>
    <td align="center"><%=rs_buy("selldate")%></td>
    <td align="center">
    <%
    sql="select * from login where id="&rs_buy("id_login")
    set rs_login=conn.execute(sql)
    %>
    <%if rs_login.eof then%><%=rs_buy("login")%><%else%><%=rs_login("username")%> (<%=rs_login("gonghao")%>)<%end if%></td>
    <td align="center">
    <%
    sql="select sum(shuliang) from sell where bianhao='"&rs_buy("bianhao")&"' and louyu=false"
    if nowxiaoqu<>"" then
    sql=sql&" and xiaoqu1="&nowxiaoqu
    end if
  if nowbigclass<>"" then
    sql=sql&" and bigclass='"&nowbigclass&"'"
  end if
  if nowsmallclass<>"" then
    sql=sql&" and smallclass='"&nowsmallclass&"'"
  end if

    if nowkeyword<>"" then
        sql=sql&" and (bianhao = '"&nowkeyword&"' or yezhu in (select id from yezhu where username like '%"&nowkeyword&"%') or id_login in (select id from login where username like '%"&nowkeyword&"%') or title like '%"&nowkeyword&"%' or daihao like '%"&nowkeyword&"%')"
      end if
    set rs_sum=conn.execute(sql)
    %>
    <%=formatnumber(rs_sum(0),0,-1)%></td>
    <td align="center">
    <%
    sql="select sum(price1*shuliang) from sell where bianhao='"&rs_buy("bianhao")&"' and louyu=false"
    if nowxiaoqu<>"" then
    sql=sql&" and xiaoqu1="&nowxiaoqu
    end if
    if nowkeyword<>"" then
        sql=sql&" and (bianhao = '"&nowkeyword&"' or yezhu in (select id from yezhu where username like '%"&nowkeyword&"%') or id_login in (select id from login where username like '%"&nowkeyword&"%') or title like '%"&nowkeyword&"%' or daihao like '%"&nowkeyword&"%')"
      end if
    set rs_sum=conn.execute(sql)
    %>
    <%=formatnumber(rs_sum(0),2,-1)%></td>
    <%if request.Cookies("shiwei_id")="1" or fla87="1" then%>
    <td align="center">
    <%
    sql="select sum(price2*shuliang) from sell where bianhao='"&rs_buy("bianhao")&"' and louyu=false"
    if nowxiaoqu<>"" then
    sql=sql&" and xiaoqu1="&nowxiaoqu
    end if
  if nowbigclass<>"" then
    sql=sql&" and bigclass='"&nowbigclass&"'"
  end if
  if nowsmallclass<>"" then
    sql=sql&" and smallclass='"&nowsmallclass&"'"
  end if
    if nowkeyword<>"" then
        sql=sql&" and (bianhao = '"&nowkeyword&"' or yezhu in (select id from yezhu where username like '%"&nowkeyword&"%') or id_login in (select id from login where username like '%"&nowkeyword&"%') or title like '%"&nowkeyword&"%' or daihao like '%"&nowkeyword&"%')"
      end if
    set rs_sum=conn.execute(sql)
    %>
    <%=formatnumber(rs_sum(0),2,-1)%></td>
    <td align="center">
    <%
    sql="select sum((price1-price2)*shuliang) from sell where bianhao='"&rs_buy("bianhao")&"' and louyu=false"
    if nowxiaoqu<>"" then
    sql=sql&" and xiaoqu1="&nowxiaoqu
    end if
  if nowbigclass<>"" then
    sql=sql&" and bigclass='"&nowbigclass&"'"
  end if
  if nowsmallclass<>"" then
    sql=sql&" and smallclass='"&nowsmallclass&"'"
  end if
    if nowkeyword<>"" then
        sql=sql&" and (bianhao = '"&nowkeyword&"' or yezhu in (select id from yezhu where username like '%"&nowkeyword&"%') or id_login in (select id from login where username like '%"&nowkeyword&"%') or title like '%"&nowkeyword&"%' or daihao like '%"&nowkeyword&"%')"
      end if
    set rs_sum=conn.execute(sql)
    %>
    <%=formatnumber(rs_sum(0),2,-1)%></td><%end if%>
    <td align="center">
    <%
    sql="select * from yezhu where id="&rs_buy("yezhu")
    set rs_yezhu=conn.execute(sql)
    %>
        <%if rs_yezhu.eof=false then%><%=rs_yezhu("username")%><%else%>非会员<%end if%></td>
        </tr>
        <%
        sql="select * from sell where type=0 and louyu=false and bianhao='"&rs_buy("bianhao")&"'"
    if nowxiaoqu<>"" then
    sql=sql&" and xiaoqu1="&nowxiaoqu
    end if
    if nowkeyword<>"" then
        sql=sql&" and (bianhao = '"&nowkeyword&"' or yezhu in (select id from yezhu where username like '%"&nowkeyword&"%') or id_login in (select id from login where username like '%"&nowkeyword&"%') or title like '%"&nowkeyword&"%' or daihao like '%"&nowkeyword&"%')"
      end if
    set rs_buy2=conn.execute(sql)
        %>
       </table></td></tr>
    <%end if%>
  </form></table>
<!--endprint-->
</td>
<td></td></tr>
<tr><td><img src="../images/r_4.gif" alt="" /></td>
<td></td>
<td><img src="../images/r_3.gif" alt="" /></td>
</tr></table></body></html>
[local]1[/local]小区是数字类型,分类是文本类型。高手看一下是不是字符串没写对。
搜索更多相关主题的帖子: 分类 数据 选择 
2010-12-03 10:29
快速回复:下拉选择分类刷不出数据
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.021496 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved