ASP分页显示中出现的问题

<%Functionpagination(pagecount,pagesize,page,resultcount)Dimquery,a,x,tempaction="htt... <%
Function pagination(pagecount,pagesize,page,resultcount)
Dim query, a, x, temp
action = "http://" & Request.ServerVariables("HTTP_HOST") & Request.ServerVariables("SCRIPT_NAME")
query = Split(Request.ServerVariables("QUERY_STRING"), "&")
For Each x In query
a = Split(x, "=")
If StrComp(a(0), "page", vbTextCompare) <> 0 Then
temp = temp & a(0) & "=" & a(1) & "&"
End If
Next
Response.Write("<form method=get onsubmit=""document.location = '" & action & "?" & temp & "Page='+this.page.value;return false;"">")
if page<=1 then
Response.Write ("[首页] [上一页] ")
else
Response.Write("[<a href=" & action & "?" & temp & "Page=1>首页</a>] ")
Response.Write("[<a href=" & action & "?" & temp & "Page=" & (Page-1) & ">上一页</a>] ")
end if

if page>=pagecount then
Response.Write ("[下一页] [尾页]")
else
Response.Write("[<a href=" & action & "?" & temp & "Page=" & (Page+1) & ">下一页</a>] ")
Response.Write("[<a href=" & action & "?" & temp & "Page=" & pagecount & ">尾页</a>]")
end if
Response.Write("[页次:<font color=red>" & page & "</font>/" & pageCount)
Response.Write("] [共" & resultcount & "条 <font color=red>"& pagesize & "</font>条/页]")
Response.Write(" 转到" & "<input name=page size=4 value=" & page & ">" & "页<input type=submit value=go>")
End function
%>
以上是分页语句的主程式,问题是,假如SQL查询是全部的话,可以正确使用,但如果在页面上做一个表单,加入一个文本框输入查询条件,经过按钮提交之后,第一页显示会按原来的内容,但点下一页后就变回查询全部内容,请问高手,这个问题该如何解决
展开
 我来答
northbig
2009-10-18 · TA获得超过253个赞
知道小有建树答主
回答量:805
采纳率:0%
帮助的人:602万
展开全部
大概、可能、也许:

假设查询的变量为 userselect
点查询时要提交userselect,这是肯定的,页面获取该值request.form("userselect") 。点下一页时,这个变量也要提交一次。
<input type="hidden" name="userselect" value="<%=userselect%>"> 这句是放在FORM里面的。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式