asp分页显示数据库中的记录
偶现在还是菜鸟,希望大家给的程序是自己写的而且详细点,最好能附上注释,还有链接的时候做成1,2,3,4....这种模式的,不要上一页,下一页这种样式的,小弟在此先谢过了!...
偶现在还是菜鸟,希望大家给的程序是自己写的而且详细点,最好能附上注释,还有链接的时候做成1,2,3,4....这种模式的,不要上一页,下一页这种样式的, 小弟在此先谢过了!
展开
2个回答
2013-12-11
展开全部
create proc page
@page int, --1代表点击下一页0代表上一页,其他任意数代表跳转
@jumppage int output --当前兼要跳转到的页面页数 传进来的页数进行减1
as
--下一页
if(@page =1)
begin
select top 5 * from bbs where id not in (select top (5*@jumppage) id from bbs)
set @jumppage=@jumppage+1
end
--上一页
else if(@page=0)
begin
set @jumppage=@jumppage-1
select top 5 * from 表名 where id not in(select top (5*@jumppage) id from 表名)
end
else--跳转
begin
select top 5 * from 表名 where id not in(select top (5*@jumppage) id from 表名)
end
go--测试
declare @jumppage int
set @jumppage=1
exec page 1,@jumppage output
print @jumppage
go
@page int, --1代表点击下一页0代表上一页,其他任意数代表跳转
@jumppage int output --当前兼要跳转到的页面页数 传进来的页数进行减1
as
--下一页
if(@page =1)
begin
select top 5 * from bbs where id not in (select top (5*@jumppage) id from bbs)
set @jumppage=@jumppage+1
end
--上一页
else if(@page=0)
begin
set @jumppage=@jumppage-1
select top 5 * from 表名 where id not in(select top (5*@jumppage) id from 表名)
end
else--跳转
begin
select top 5 * from 表名 where id not in(select top (5*@jumppage) id from 表名)
end
go--测试
declare @jumppage int
set @jumppage=1
exec page 1,@jumppage output
print @jumppage
go
2013-12-11
展开全部
select top 10 * from a where 编号 not in(select top 20 编号 from a)select top 10 * from表示一页显示的很数select top 20 编号 from a表示第几页。后面的top 20表示第二页。后面的top=前面的top*第几页。明白了吗?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询