ASP翻页的实现方法

发表于:2007-06-30来源:作者:点击数: 标签:
sub showpages() dim n if totalAnnounce mod maxannounce=0 then n= totalAnnounce \ maxannounce else n= totalAnnounce \ maxannounce+1 end if dim k for k=1 to n if k=currentPage then if k=1 then response.write "td align=‘’center‘’a href=‘
sub showpages()  
dim n  
    if totalAnnounce mod maxannounce=0 then  
    n= totalAnnounce \ maxannounce  
    else  
    n= totalAnnounce \ maxannounce+1  
    end if  
    dim k  
    for k=1 to n  
    if k=currentPage then  
    if k=1 then  
response.write "<td align=‘’center‘’><a href=‘’list.asp?BoardID="+cstr(bo
ardID)+"&page="+cstr(k+1)+"‘’><img src=‘’images/down.gif‘’ border=‘’0‘’>></td>"  
else  
if k=n then  
response.write "<td align=‘’center‘’><a href=‘’list.asp?BoardID="+cstr(bo
ardID)+"&page="+cstr(k-1)+"‘’><img src=‘’images/up.gif‘’ border=‘’0‘’><
/td>"  
else  
response.write "<td><a href=‘’list.asp?BoardID="+cstr(boardID)+"&page="
+cstr(k-1)+"‘’><img src=‘’images/up.gif‘’ border=‘’0‘’></td>"  
response.write "<td><a href=‘’list.asp?BoardID="+cstr(boardID)+"&page="
+cstr(k+1)+"‘’><img src=‘’images/down.gif‘’ border=‘’0‘’></td>"  
end if  
end if  
    end if  
    next  
    response.write "<br>"  
end sub

原文转自:http://www.ltesting.net