asp。net中使用Button如何实现datalist的跳转页面?(c#)
我已经实现了datalist分页的功能,现在主要想通过点击按钮来跳转到文本框中数字的页面,该怎样实现呢?请高手帮个忙,分不多了,完成了在追加把,谢谢!谢谢!...
我已经实现了datalist分页的功能,现在主要想通过点击按钮来跳转到文本框中数字的页面,该怎样实现呢?
请高手帮个忙,分不多了,完成了在追加把 ,谢谢!谢谢! 展开
请高手帮个忙,分不多了,完成了在追加把 ,谢谢!谢谢! 展开
2个回答
展开全部
不知道你分页是怎么写的我的是传入一个第几页以及每页显示多少行,这样的话你那个问题就很好解决直接调用存储过程就可以了...这样想显示那一页就可以显示哪一页..
Create proc personpage
@pagesize int,
@currtpageindex int
as
declare @sql nvarchar(200)
set @sql=' select Top '
+convert(varchar(10),@pagesize)
+' * from Goods where GoodsId not in (select Top '
+convert(varchar(10),(@currtpageindex-1)*@pagesize)
+' GoodsId from Goods order by GoodsId asc)order by GoodsId asc '
exec sp_executesql @sql
exec personpage 5,2
Create proc personpage
@pagesize int,
@currtpageindex int
as
declare @sql nvarchar(200)
set @sql=' select Top '
+convert(varchar(10),@pagesize)
+' * from Goods where GoodsId not in (select Top '
+convert(varchar(10),(@currtpageindex-1)*@pagesize)
+' GoodsId from Goods order by GoodsId asc)order by GoodsId asc '
exec sp_executesql @sql
exec personpage 5,2
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在button的click事件中,
CurrentPage=TextBox1.Text;
然后再重新绑定datalist
http://zhidao.baidu.com/question/98224755.html
这里有具体的说明,你可以看看
CurrentPage=TextBox1.Text;
然后再重新绑定datalist
http://zhidao.baidu.com/question/98224755.html
这里有具体的说明,你可以看看
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询