分页的问题
Dim page_nof.PageSize=psize1
If Request.QueryString("page_no")="" Then
page_no=1
elseif not isnumeric(Request.QueryString("page_no")) then
page_no=1
elseif Request.QueryString("page_no")>cint(f.pagecount) then
page_no=cint(f.pagecount)
Else
page_no=Cint(Request.QueryString ("page_no"))
End If
我想在输入框里输入比总共页码要大的数字时,显示的是最后一页,但是当我输入页码比总共页码要小时,也显示的是最后一页,不知道哪出问题了。