<%
Dim rs
If Request("pSize") = "" Then varPagSize = 4
StrSQL = "SELECT * from tbs_livros where status = 1"
Conecta ObjAdoConn, strSQL, rs
if rs.EOF Then
Response.Write ("Não há notícias cadastradas")
else
rs.PageSize = varPagSize
varPagCount = rs.PageCount
If varPag > varPagCount Then
varPag = varPagCount
End If
rs.AbsolutePage = varPag
'Mostra Notícias da home
While Not rs.EOF And varCount <= varPagSize %>