codice:
Sub BuildPagers()
If TotalPages >= 1 Then
Dim btnNext As New HyperLink()
btnNext.ImageUrl = "images\bottoni\bottnext.gif"
If CurrentPage < TotalPages Then
btnNext.NavigateUrl = "lista.aspx?cat=" & cat.Replace(" '", "''") & "&p=" & CurrentPage + 1
End If
btn_Next.Controls.Add(btnNext)
Dim btnLast As New HyperLink()
btnLast.ImageUrl = "images\bottoni\bottlast.gif"
If CurrentPage > 1 Then
btnLast.NavigateUrl = "lista.aspx?cat=" & cat.Replace(" '", "''") & "&p=" & CurrentPage - 1
End If
btn_Last.Controls.Add(btnLast)
End If
end sub