个位大虾帮帮忙了,俺是新来滴,下面的代码只能是 共xxx个文件 x/x页 每页显示20个 首页 上一页 下一页 尾页 我想在加一个表单跳转的, 小生在先此谢过了,以后还要靠大虾们多多照顾啊!
' allshu表示FLASH个数 MaxPerPage2表示每页显示个个数 ,Nclass_id表示连接页ID,mpage2表示共记多少页,currentPage2表示当前第几页
'#########设置分页函数
function pagelist(currentPage2,MaxPerPage2,Nclass_id,mpage2,allshu)
pageno=currentPage2
Nclass_show=""
Nclass_show="共"&allshu&"个flash "&pageno&"/"&mpage2&" 页 每页显示"&MaxPerPage2&" 个 "
if cint(pageno)>1 then
Nclass_show=Nclass_show&"<a href="&Nclass_id&"_1.htm title=""最前页"">首页</a> "
else
Nclass_show=Nclass_show&"首页 "
end if
if cint(pageno)>1 then
Nclass_show=Nclass_show&"<a href="&Nclass_id&"_"&pageno-1&".htm title=""上一页"">上一页</a> "
else
Nclass_show=Nclass_show&"上一页 "
end if
if cint(pageno)< mpage2 then
Nclass_show=Nclass_show&"<a href="&Nclass_id&"_"&pageno+1&".htm title=""下一页"">下一页</a> "
else
Nclass_show=Nclass_show&"下一页 "
end if
if cint(pageno)< mpage2 then
Nclass_show=Nclass_show&"<a href="&Nclass_id&"_"&mpage2&".htm title=""最后页"">尾页</a>"
else
Nclass_show=Nclass_show&"尾页"
end if
Nclass_show=Nclass_show&""
pagelist = Nclass_show
end function