Ariau has many diverse and exiting packages exactly matching your need. Find the activity that best match your criteria.
<%
Set RecSet = Server.CreateObject("ADODB.Recordset")
n_page=request("n_page")
If n_page="" Then n_page = 1
RecSet.PageSize=5
RecSet.Open "Select * from packages where type = 'General'", conn, 3
For navega= 1 to RecSet.PageCount
If navega= Cint(n_page) Then
Else
End If
Next
if RecSet.PageSize * n_page > RecSet.RecordCount then
ult_r = RecSet.RecordCount
else
ult_r = RecSet.PageSize * n_page
end if
anterior=n_page-1
proxima=n_page+1
Response.write "| "
If not anterior = 0 Then
response.write "[ Previous ]"
Else
response.write "[ Previous ]"
End If
Response.write " | "
Response.Write "Packages " & RecSet.PageSize * n_page - RecSet.PageSize + 1 & " to " & ult_r &" "
Response.Write "There are "&RecSet.RecordCount&" Packages."
Response.write " | "
If proxima < navega Then
response.write "[ Next ]"
Else
response.write "[ Next ]"
End If
Response.write " | "
RecSet.Close
Set RecSet = nothing
%>
<%
For navega= 1 to RecSet.PageCount
If navega= Cint(n_page) Then
Else
End If
Next
if RecSet.PageSize * n_page > RecSet.RecordCount then
ult_r = RecSet.RecordCount
else
ult_r = RecSet.PageSize * n_page
end if
anterior=n_page-1
proxima=n_page+1
Response.write "| "
If not anterior = 0 Then
response.write "[ Previous ]"
Else
response.write "[ Previous ]"
End If
Response.write " | "
Response.Write "Packages " & RecSet.PageSize * n_page - RecSet.PageSize + 1 & " to " & ult_r &" "
Response.Write "There are "&RecSet.RecordCount&" Packages."
Response.write " | "
If proxima < navega Then
response.write "[ Next ]"
Else
response.write "[ Next ]"
End If
Response.write " | "
RecSet.Close
Set RecSet = nothing
%>
|