create proc paging
@pageIndex int,
@pageSize int,
@tableName varchar(50),
@orderColumn varchar(30)
as
declare @sqlstring varchar(1000)
set @sqlstring='select top '+cast(@pageSize as varchar(10))+'*
from (
select top '+cast(@pageSize as varchar(10))+' *
from (
select top '+cast(@pageIndex*@pageSize as varchar(10)) +' *
from '+@tableName+'
order by '+@orderColumn+') as newtable
order by '+@orderColumn+' desc
) as ascTable
order by '+@orderColumn
exec(@sqlstring)
没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论
收起资源包目录
Paging自定义分页.rar (17个子文件)
Paging自定义分页
Web
AssemblyInfo.cs 2KB
Web.csproj 6KB
Global.asax.resx 2KB
bin
Web.pdb 26KB
Web.dll 20KB
WebForm1.aspx.cs 3KB
必读.txt 25B
WebForm1.aspx.resx 5KB
Web.config 4KB
Global.asax.cs 1KB
ProductDB.cs 2KB
Web.suo 8KB
Web.csproj.webinfo 104B
分页的存储过程.txt 497B
Global.asax 70B
WebForm1.aspx 2KB
Web.sln 912B
共 17 条
- 1
资源评论
jinzeyu008
- 粉丝: 0
- 资源: 7
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功