| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1655 人关注过本帖
标题:为什么只能显示最后一条数据,有完整代码,请帮我看下
取消只看楼主 加入收藏
eournet
Rank: 2
等 级:论坛游民
帖 子:103
专家分:26
注 册:2010-5-22
结帖率:55.56%
收藏
已结贴  问题点数:20 回复次数:9 
为什么只能显示最后一条数据,有完整代码,请帮我看下
<%
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><%=dianming%> - 工单记录查询</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("whd"+x);
            if (obj)
            {
                obj.style.display = 'none';
            }
        }
    }
    else
    {
        img.src = img.src.replace('close', 'open');
        for (x=1;x<=<%=maxrecord%>;x++)
        {
            obj = document.getElementById("whd"+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 fla2="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

if request("isok")<>"" then
  conn.execute("update whd set isok="&request("isok")&" where bianhao='"&request("bianhao")&"'")
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
nowku=request("ku")
nowkeyword=request("keyword")
%>
<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:100px">
      <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:100px">
      <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');">
    <%
    if request.Cookies("shiwei_id")="1" or fla88="1" then
      sql="select * from ku order by id"
      set rs_ku=conn.execute(sql)
    else
      sql="select * from ku where instr(login,',"&request.Cookies("shiwei_id")&",')>0 order by id"
      set rs_ku=conn.execute(sql)
      if rs_ku.eof then
        nowku="0"
      elseif request("ku")="" then
        nowku=rs_ku("id")
      end if      
    end if  
    %>
      <select name="ku" onChange="form2.submit()">
    <%if request.Cookies("shiwei_id")="1" or fla88="1" then%>
        <option value="">所有施工单位</option>
    <%elseif rs_ku.eof then%>
        <option value="0">没有你管理的施工单位</option>   
    <%end if%>
    <%
    do while rs_ku.eof=false
    %>
        <option value="<%=rs_ku("id")%>"<%if trim(cstr(rs_ku("id")))=nowku then%> selected="selected"<%end if%>><%=rs_ku("ku")%></option>
        <%
      rs_ku.movenext
    loop
    %>
      </select>   
      <input type="text" name="keyword" size="20" value="<%=nowkeyword%>">
      <input type="hidden" name="hid" value="ok">
      <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>工单记录查询</td>
      <td align="right"> </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" action="whd_del.asp">
  <input type="hidden" name="startdate" value="<%=nowstartdate%>">
  <input type="hidden" name="enddate" value="<%=nowenddate%>">
  <input type="hidden" name="ku" value="<%=nowku%>">
  <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%>&ku=<%=nowku%>&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="?order4=<%if request("order4")="asc" then%>desc<%else%>asc<%end if%>&page=<%=currentpage%>&startdate=<%=nowstartdate%>&enddate=<%=nowenddate%>&ku=<%=nowku%>&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%>&ku=<%=nowku%>&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%>&ku=<%=nowku%>&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>
    <td class="category" >
      <a href="?order7=<%if request("order7")="asc" then%>desc<%else%>asc<%end if%>&page=<%=currentpage%>&startdate=<%=nowstartdate%>&enddate=<%=nowenddate%>&ku=<%=nowku%>&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="?order9=<%if request("order9")="asc" then%>desc<%else%>asc<%end if%>&page=<%=currentpage%>&startdate=<%=nowstartdate%>&enddate=<%=nowenddate%>&ku=<%=nowku%>&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>
        <td class="category" >
      <a href="?order10=<%if request("order10")="asc" then%>desc<%else%>asc<%end if%>&page=<%=currentpage%>&startdate=<%=nowstartdate%>&enddate=<%=nowenddate%>&ku=<%=nowku%>&keyword=<%=nowkeyword%>" class="title">完成<%if request("order10")="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 fla1="1" or request.Cookies("shiwei_id")="1" then%>
    <td class="category" >修改</td>
    <%end if%>
    <%if fla4="1" or request.Cookies("shiwei_id")="1" then%>
    <td class="category" >删除</td>
    <%end if%>
  </tr>
  <%
  set rs_whd =server.createobject("ADODB.RecordSet")
  sql="select * from whd where  zu"
  if request.Cookies("shiwei_id")<>1 and lookwhdsell="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 nowku<>"" then
    sql=sql&" and bianhao in (select bianhao from whd where  id_ku="&nowku&" and zu=false)"
  end if
  if nowkeyword<>"" then
    sql=sql&" and (bianhao = '"&nowkeyword&"'  or id_login in (select id from login where username like '%"&nowkeyword&"%') or bianhao in (select bianhao from whd where   (price like '%"&nowkeyword&"%' or huohao like '%"&nowkeyword&"%')))"
  end if

  if request("order1")<>"" then
    sql=sql&" order by bianhao "&request("order1")
  elseif request("order2")<>"" then
    sql=sql&" order by huohao "&request("order2")
  elseif request("order3")<>"" then
    sql=sql&" order by title "&request("order3")
  elseif request("order4")<>"" then
    sql=sql&" order by selldate "&request("order4")
  elseif request("order5")<>"" then
    sql=sql&" order by id_login "&request("order5")
  elseif request("order6")<>"" then
    sql=sql&" order by id_gys "&request("order6")
  elseif request("order7")<>"" then
    sql=sql&" order by shulian "&request("order7")
  elseif request("order8")<>"" then
    sql=sql&" order by price2 "&request("order8")
  elseif request("order9")<>"" then
    sql=sql&" order by price2 "&request("order9")
  elseif request("order10")<>"" then
    sql=sql&" order by isok "&request("order10")               
  else
    sql=sql&" order by selldate desc"  
  end if
   
  rs_whd.open sql,conn,1,3
  if not rs_whd.eof then
  rs_whd.pagesize=maxrecord
  rs_whd.absolutepage=currentpage
  for currentrec=1 to rs_whd.pagesize
    if rs_whd.eof then
      exit for
    end if
  %>
  <tr onMouseOver="this.className='highlight'" onMouseOut="this.className=''" onDblClick="javascript:var win=window.open('print_whd.asp?bianhao=<%=rs_whd("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, 'whd<%=currentrec%>')" /></td>
    <td align="center" height="25" ><%=rs_whd("bianhao")%></td>
    <td align="center"><%=rs_whd("selldate")%></td>
    <td align="center">
      <%
      sql="select * from login where id="&rs_whd("id_login")
      set rs_login=conn.execute(sql)
      %>
      <%if rs_login.eof then%><%=rs_whd("login")%><%else%><%=rs_login("username")%><%end if%>
    </td>
    <td align="center" ><%=rs_whd("guige")%></td>
    <td align="center" ><%=rs_whd("gys")%></td>
    <%if request.Cookies("shiwei_id")="1" or fla87="1" then%>
    <td align="center" ><%=rs_whd("price")%></td>
    <%end if%>   
    <td align="center" ><%if rs_whd("isok") then%><%if fla3="1" or request.Cookies("shiwei_id")="1" then%><a href="?bianhao=<%=rs_whd("bianhao")%>&isok=false&page=<%=currentpage%>&startdate=<%=nowstartdate%>&enddate=<%=nowenddate%>&ku=<%=nowku%>&keyword=<%=nowkeyword%>&order1=<%=request("order1")%>&order2=<%=request("order2")%>&order3=<%=request("order3")%>&order4=<%=request("order4")%>&order5=<%=request("order5")%>&order6=<%=request("order6")%>&order7=<%=request("order7")%>&order8=<%=request("order8")%>&order9=<%=request("order9")%>&order10=<%=request("order10")%>&order11=<%=request("order11")%>&order12=<%=request("order12")%>&order13=<%=request("order13")%>&order14=<%=request("order14")%>&order15=<%=request("order15")%>"><img src="../images/check.gif" border="0" alt="点击设为没完成"></a><%else%><img src="../images/check.gif" border="0"><%end if%><%else%><%if fla3="1" or request.Cookies("shiwei_id")="1" then%><a href="?bianhao=<%=rs_whd("bianhao")%>&isok=true&page=<%=currentpage%>&startdate=<%=nowstartdate%>&enddate=<%=nowenddate%>&ku=<%=nowku%>&keyword=<%=nowkeyword%>&order1=<%=request("order1")%>&order2=<%=request("order2")%>&order3=<%=request("order3")%>&order4=<%=request("order4")%>&order5=<%=request("order5")%>&order6=<%=request("order6")%>&order7=<%=request("order7")%>&order8=<%=request("order8")%>&order9=<%=request("order9")%>&order10=<%=request("order10")%>&order11=<%=request("order11")%>&order12=<%=request("order12")%>&order13=<%=request("order13")%>&order14=<%=request("order14")%>&order15=<%=request("order15")%>"><img src="../images/nomoney.gif" border="0" alt="点击设为已完成"></a><%else%><img src="../images/nomoney.gif" border="0"><%end if%><%end if%></td>
    <%if fla1="1" or request.Cookies("shiwei_id")="1" then%>
    <td align="center" >
    <img src="../images/res.gif" border="0" hspace="2" align="absmiddle" style="cursor:hand;" onClick="javascript:var win=window.open('whd_modi.asp?id=<%=rs_whd("id")%>','修改','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>
    <%end if%>
    <%if fla4="1" or request.Cookies("shiwei_id")="1" then%>
    <td align="center" ><input type="checkbox" name="ID" value="<%=rs_whd("bianhao")%>" style="border:0"></td>
    <%end if%>
  </tr>
  <%
    sql="select * from whd where zu=false and bianhao='"&rs_whd("bianhao")&"'"
    if nowku<>"" then
      sql=sql&" and id_ku="&nowku
    end if
    if nowkeyword<>"" then
      sql=sql&" and (bianhao = '"&nowkeyword&"' or id_gys in (select id from gys where company like '%"&nowkeyword&"%') or id_login in (select id from login where username like '%"&nowkeyword&"%') or title like '%"&nowkeyword&"%' or huohao like '%"&nowkeyword&"%')"
      end if
    set rs_whd2=conn.execute(sql)
  %>
  <tr id="whd<%=currentrec%>" style="display:none;">
    <td colspan="16" class="category">
      <table align="center" cellpadding="4" cellspacing="1" class="grid" border="1" width="100%">
        <tr align="center">
           <td width="159"  bgcolor="#C3DAF9">材料名称</td>
          <td height="30"  bgcolor="#C3DAF9">型号规格</td>
          <td  bgcolor="#C3DAF9">单位</td>
          <td  bgcolor="#C3DAF9">数量</td>
          <td  bgcolor="#C3DAF9">单价</td>
          <td  bgcolor="#C3DAF9">金额</td>
        </tr>      
        <%
        do while rs_whd2.eof=false
        sql="select * from whd where zu and bianhao='"&rs_whd("bianhao")&"'"
        set rs_whd=conn.execute(sql)        
        %>
        <tr>
          <td align="center" width="159" ><%=rs_whd2("title")%></td>
          <td align="center" ><%=rs_whd2("huohao")%></td>
          <td align="center" ><%=rs_whd2("id_danwei")%></td>
          <td align="center" ><%=formatnumber(rs_whd2("shulian"),2)%></td>
          <td align="center" ><%=formatnumber(rs_whd2("price2"),2)%></td>
          <td align="center" ><%=formatnumber((rs_whd2("shulian"))*(rs_whd2("price2")),2)%></td>   
        </tr>
        
            <%
        rs_whd2.movenext
        loop
        %>
            <tr>
          <td align="center" width="159" >主要工作量</td>
          <td align="center" colspan="5"><p align="left"><%=rs_whd("beizhu")%></td>
        </tr>
        </table>
        </td>
  </tr>
  <%   
    rs_whd.movenext
  next
  else
  %>
  <tr align="center" onMouseOver="this.className='highlight'" onMouseOut="this.className=''">
    <td colspan="16" height="25" align="center" style="color:red"><b>没有找到记录</b></td>
  </tr>
  <%
  end if
  %>
  <%
  if rs_whd.recordcount>0 then
  %>
  <tr>
    <td colspan="16" height="30" class="category">
    <table cellpadding=0 cellspacing=0 width="100%">
    <tr>
    <td width="20%" align="left" style="color:#FF0000;">&nbsp;双击查看打印单</td>  
    <td width="80%" align="right">
    &nbsp;&nbsp;
      <%=rs_whd.recordcount%>&nbsp;条信息&nbsp; 共&nbsp;<%=rs_whd.pagecount%>&nbsp;页&nbsp;
  <%
  nowstart=currentpage-3
  if nowstart<1 then
    nowstart=1
  end if
  nowend=currentpage+3
  if nowend>rs_whd.pagecount then
    nowend=rs_whd.pagecount
  end if
  response.write "&nbsp;<a href='?startdate="&nowstartdate&"&enddate="&nowenddate&"&ku="&nowku&"&keyword="&nowkeyword&"&page=1&order1="&request("order1")&"&order2="&request("order2")&"&order3="&request("order3")&"&order4="&request("order4")&"&order5="&request("order5")&"&order6="&request("order6")&"&order7="&request("order7")&"&order8="&request("order8")&"&order9="&request("order9")&"&order10="&request("order10")&"&order11="&request("order11")&"&order12="&request("order12")&"&order13="&request("order13")&"&order14="&request("order14")&"&order15="&request("order15")&"' class='page'>最前页</a>&nbsp;"
  for ipage=nowstart to nowend
    if cstr(ipage)=cstr(currentpage) then
      response.write "&nbsp;<span style='font-weight:bold;color:#5858E6'>" & ipage &"</span>&nbsp;"
    else
      response.write "&nbsp;[&nbsp;<a href='?startdate="&nowstartdate&"&enddate="&nowenddate&"&ku="&nowku&"&keyword="&nowkeyword&"&page="&ipage&"&order1="&request("order1")&"&order2="&request("order2")&"&order3="&request("order3")&"&order4="&request("order4")&"&order5="&request("order5")&"&order6="&request("order6")&"&order7="&request("order7")&"&order8="&request("order8")&"&order9="&request("order9")&"&order10="&request("order10")&"&order11="&request("order11")&"&order12="&request("order12")&"&order13="&request("order13")&"&order14="&request("order14")&"&order15="&request("order15")&"' class='page'>" & ipage &"</a>&nbsp;]&nbsp;"
    end if
  next
  response.write "&nbsp;<a href='?startdate="&nowstartdate&"&enddate="&nowenddate&"&ku="&nowku&"&keyword="&nowkeyword&"&page="&rs_whd.pagecount&"&order1="&request("order1")&"&order2="&request("order2")&"&order3="&request("order3")&"&order4="&request("order4")&"&order5="&request("order5")&"&order6="&request("order6")&"&order7="&request("order7")&"&order8="&request("order8")&"&order9="&request("order9")&"&order10="&request("order10")&"&order11="&request("order11")&"&order12="&request("order12")&"&order13="&request("order13")&"&order14="&request("order14")&"&order15="&request("order15")&"' class='page'>最后页</a>&nbsp;"
%>
    <select name="page" onChange="form1.action='?';form1.submit();">
<%
    for x=1 to rs_whd.pagecount
%>
      <option value="<%=x%>"<%if currentpage=trim(cstr(x)) then%> selected="selected"<%end if%>><%=x%></option>
<%   
    next
%>
    </select>
    <%if fla4="1" or request.Cookies("shiwei_id")="1" then%>
    <input name="chkall" type="checkbox" id="chkall" value="select" onClick="CheckAll(this.form)" style="border:0"> 全选
    <input type="submit" value="删 除" onClick="return confirm('此操作无法恢复!!!请慎重!!!\n\n确定要删除所选择的入库记录吗?')" class="button">
    <%end if%>
  </td>
  </tr></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>
搜索更多相关主题的帖子: 数据 代码 
2010-07-23 20:30
eournet
Rank: 2
等 级:论坛游民
帖 子:103
专家分:26
注 册:2010-5-22
收藏
得分:0 
关联文件和截图.rar (142.8 KB)

附件相关,请版主们不遗余力帮下忙,十二分感谢
2010-07-24 21:32
eournet
Rank: 2
等 级:论坛游民
帖 子:103
专家分:26
注 册:2010-5-22
收藏
得分:0 
忘记了数据库,不好意思
关联文件和截图.rar (373.33 KB)
2010-07-24 21:34
eournet
Rank: 2
等 级:论坛游民
帖 子:103
专家分:26
注 册:2010-5-22
收藏
得分:0 
谢谢你,冰镇柠檬汁儿
2010-07-25 08:13
eournet
Rank: 2
等 级:论坛游民
帖 子:103
专家分:26
注 册:2010-5-22
收藏
得分:0 
关联文件和截图.rar (378.08 KB)

包含1楼所贴代码
2010-07-25 19:13
eournet
Rank: 2
等 级:论坛游民
帖 子:103
专家分:26
注 册:2010-5-22
收藏
得分:0 
就是我在查询的页面,总是只显示最后一组数据(字段bianhao内容相同的数据),我想全部显示
图片附件: 游客没有浏览图片的权限,请 登录注册
2010-07-25 19:23
eournet
Rank: 2
等 级:论坛游民
帖 子:103
专家分:26
注 册:2010-5-22
收藏
得分:0 
那你认为怎么改才正确啊
2010-07-25 22:30
eournet
Rank: 2
等 级:论坛游民
帖 子:103
专家分:26
注 册:2010-5-22
收藏
得分:0 
select * from whd where  zu,这句应该没有问题,本来我就是要这个条件,选择数据库表whd中数据zu=true的数据行来显示
2010-07-25 22:33
eournet
Rank: 2
等 级:论坛游民
帖 子:103
专家分:26
注 册:2010-5-22
收藏
得分:0 
我实在没有能力做代码精简,要不就不会这么啰嗦了
2010-07-26 20:42
eournet
Rank: 2
等 级:论坛游民
帖 子:103
专家分:26
注 册:2010-5-22
收藏
得分:0 
再次顶起莱,请求各位版主不惜细胞看下吧
2010-07-27 14:52
快速回复:为什么只能显示最后一条数据,有完整代码,请帮我看下
数据加载中...
 
   



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

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