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> 展开
四个查询条件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> 展开
2个回答
展开全部
<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>
-------------------------------
貌似多了一个'> 你试试我改后的吧
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%><%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)%>
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)%>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询