发你一个翻页技术的代码:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="conn.asp"-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>成功案例</title>
<link href="xz/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<table width="91%" border="1" align="center" cellpadding="0" cellspacing="0" bordercolorlight="#CCCCCC" bordercolordark="#FFFFFF">
  <tr bgcolor="#799AE1">
<td width="49%" align="center" bgcolor="#799AE1"><font color="#FFFFFF">标题</font></td>
    <td width="23%" align="center" bgcolor="#799AE1"><font color="#FFFFFF">类型</font></td>
    <td colspan="2"><div align="center"><font color="#FFFFFF">操作</font>
    </div>
    <div align="center"></div></td>
  </tr>
<%
dim type1
type1=request("type")
 Set rs=Server.Createobject("Adodb.Recordset")
 Sql="Select * From new where type='"&type1&"' Order by id desc"
 rs.Open Sql,conn,1,1
     if rs.recordcount=0 then 
    %>
<div align="center">暂无内容!</div>
        <%
        else
              rs.PageSize =10 '每页记录条数
            iCount=rs.RecordCount '记录总数
            iPageSize=rs.PageSize
            maxpage=rs.PageCount 
            page=request("page")
    
    if Not IsNumeric(page) or page="" then
        page=1
    else
        page=cint(page)
    end if
    
    if page<1 then
        page=1
    elseif  page>maxpage then
        page=maxpage
    end if
    
    rs.AbsolutePage=Page
    if page=maxpage then
        x=iCount-(maxpage-1)*iPageSize
    else
        x=iPageSize
    end if
    
            For i=1 To x
        %>
<tr>
  <td width="49%" align="center"><%=rs("title")%></td>
  <td width="23%" align="center"><%=rs("type")%></td>
  <td width="14%"><div align="center"><a href="add_new1.asp?id=<%=rs("id")%>" class="style1">修改</a></div></td>
<td width="14%"><div align='center'><a href="add_new1.asp?id=<%=rs("id")%>&type=delete" class="style1">删除</a></div></td>
</tr>
   <%rs.movenext
        next
        call PageControl(iCount,maxpage,page,"border=0 align=center","<p align=center>")
        end if
        rs.close
        set rs=nothing
Sub PageControl(iCount,pagecount,page,table_style,font_style)
'生成上一页下一页链接
    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("<table " & Table_style & ">" & vbCrLf )        
    Response.Write("<form method=get onsubmit=""document.location = '" & action & "?" & temp & "Page='+ this.page.value;return false;""><TR>" & vbCrLf )
    Response.Write("<TD align=right>" & vbCrLf )
    Response.Write(font_style & vbCrLf )    
        
    if page<=1 then
        Response.Write ("首页 " & vbCrLf)        
        Response.Write ("上页 " & vbCrLf)
    else        
        Response.Write("<A HREF=" & action & "?" & temp & "Page=1>首页</A> " & vbCrLf)
        Response.Write("<A HREF=" & action & "?" & temp & "Page=" & (Page-1) & ">上页</A> " & vbCrLf)
    end if
    if page>=pagecount then
        Response.Write ("下页 " & vbCrLf)
        Response.Write ("尾页 " & vbCrLf)            
    else
        Response.Write("<A HREF=" & action & "?" & temp & "Page=" & (Page+1) & ">下页</A> " & vbCrLf)
        Response.Write("<A HREF=" & action & "?" & temp & "Page=" & pagecount & ">尾页</A> " & vbCrLf)            
    end if
    Response.Write(" 页次:" & page & "/" & pageCount & "页" &  vbCrLf)
    Response.Write(" 共有" & iCount & "条信息" &  vbCrLf)
    Response.Write(" 转到" & "<INPUT TYEP=TEXT NAME=page SIZE=1 Maxlength=5 VALUE=" & page & ">" & "页"  & vbCrLf & "<INPUT type=submit style=""font-size: 9pt"" value=GO class=b2>")
    Response.Write("</TD>" & vbCrLf )                
    Response.Write("</TR></form>" & vbCrLf )        
    Response.Write("</table>" & vbCrLf )        
End Sub
%>
</table>
</body>
</html>