Suppose there is following table
create table #temp
(
ID int Identity(1,1) ,
name varchar(1000)
)
Suppose there are following records in the table
select * from #temp

We starts with declaring following variables
Declare @PageIndex INT //indicates the start index that means your page number
Declare @PageSize INT //the total amount of records you want to display in a page
Set @PageIndex = 1
Set @PageSize = 10
I am setting the page size = 10 because I have only 15 records in my table . But you can replace this number by 1000 or even greater than this number.
SELECT * FROM
(
SELECT ROW_NUMBER() OVER (ORDER BY ID)
AS Row, * FROM #temp
)T WHERE Row between
(@PageIndex - 1) * @PageSize + 1 and @PageIndex*@PageSize
If you execute the below query it will give you following records in the screen shot.

While moving to second page using below query.
Declare @PageIndex INT
Declare @PageSize INT
set @PageIndex = 2
set @PageSize = 10
SELECT * FROM
(
SELECT ROW_NUMBER() OVER (ORDER BY ID)
AS Row, * FROM #temp
)T WHERE Row between
(@PageIndex - 1) * @PageSize + 1 and @PageIndex*@PageSize
The result will be below in the screen shot.

So similarly you can check with 1000 records.
Hope this will help you.
Let me know in case of any confusion.
ROW_NUMBER()as suggested in the answers, becauseROW_NUMBER()is dynamically generated, which means that it's very possible for small changes in the underlying datasource to throw your entire process off. – Richard DesLonde May 26 '11 at 19:41