ASP 查询条件>3时的分页问题

你好。我看过你回答过类似问题,相信你也可以解决我这个问题。四个查询条件sort0、method、findstr和findstr0。以下是分页代码:<tdalign=cen... 你好。我看过你回答过类似问题,相信你也可以解决我这个问题。
四个查询条件sort0、method、findstr和findstr0。以下是分页代码:
<td align=center height="15" colspan="4" class=trtop>第 <% for pno=1 to mpage
if pno=cint(pageno) then%> <%=pno%> <%else%> <a href='list.asp?sort0=<%=sort0%>&pageno=<%=pno%><%if method<>"" then%>&method=<%=method%><%end if%><%if findstr<>"" then%>&findstr=<%=findstr%><%end if%>'>><%if findstr0<>"" then%>&findstr0=<%=findstr0%><%end if%>'><%=pno%></a><%end if%><%next%> 页  每页 <%=pmcount%> 条    共<%=reco.recordcount%> 篇</td>

问题是只能实现前三个查询条件,当加上第四个查询条件,只能显示第一页,后面的不能显示,
顺便加一句,以下代码是可以实现查询分页:
<td align=center height="15" colspan="4" class=trtop>第 <% for pno=1 to mpage
if pno=cint(pageno) then%> <%=pno%> <%else%> <a href='list.asp?sort0=<%=sort0%>&pageno=<%=pno%><%if method<>"" then%>&method=<%=method%><%end if%><%if findstr<>"" then%>&findstr=<%=findstr%><%end if%>'><%=pno%></a><%end if%><%next%> 页  每页 <%=pmcount%> 条    共<%=reco.recordcount%> 篇</td>
展开
 我来答
eiwinter
2010-12-02 · TA获得超过250个赞
知道小有建树答主
回答量:341
采纳率:0%
帮助的人:402万
展开全部
<td align=center height="15" colspan="4" class=trtop>第 <% for pno=1 to mpage
if pno=cint(pageno) then%> <%=pno%> <%else%> <a href='list.asp?sort0=<%=sort0%>&pageno=<%=pno%><%if method<>"" then%>&method=<%=method%><%end if%><%if findstr<>"" then%>&findstr=<%=findstr%><%end if%><%if findstr0<>"" then%>&findstr0=<%=findstr0%><%end if%>'><%=pno%></a><%end if%><%next%> 页 每页 <%=pmcount%> 条 共<%=reco.recordcount%> 篇</td>
-------------------------------
貌似多了一个'> 你试试我改后的吧
nxnd1986
2010-12-02 · TA获得超过2248个赞
知道小有建树答主
回答量:903
采纳率:0%
帮助的人:626万
展开全部
<td align=center height="15" colspan="4" class=trtop>第 <% for pno=1 to mpage
if pno=cint(pageno) then%> <%=pno%> <%else%> <a href='list.asp?sort0=<%=sort0%>&pageno=<%=pno%><%if method<>"" then%>&method=<%=method%><%end if%><%if findstr<>"" then%>&findstr=<%=findstr%><%end if%><%if findstr0<>"" then%>&findstr0=<%=findstr0%><%end if%>'><%=pno%></a><%end if%><%next%> 页 每页 <%=pmcount%> 条 共<%=reco.recordcount%> 篇</td>

因为你写错了~你这样写会加重服务器的负担的~把所有代码尽量都写到一个<% %>里面,用response.write来代替<%= %>,例如<%if findstr<>"" then%>&findstr=<%=findstr%><%end if%>可以写成
<%if findstr<>"" then
response.write("&findstr="&findstr)
end if%>
或者
<%if findstr<>"" then response.write("&findstr="&findstr)%>
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式