<%
if page-5 <= 1 then
startpage = 1
stoppage = 10
else
if page-5 > 1 then
Response.Write "| page 1 |"
startpage = page -5
if page+4 > TotalPage then
stoppage = TotalPage
else
stoppage = page+4
end if
end if
end if
for i=startpage to stoppage
If i<>page then
Response.Write "|" & i & "|"
else
Response.Write "|"&i&"|"
end if
next
%>
|
<%
end if
RS.close
set RS=nothing
CN.close
set CN=nothing
%>