具有分页功能但支持自定义格式的控件
我需要知道 asp .net 2.0 中使用什么控件来获得此布局:
我需要使用 2 行 4 列一次显示 8 个视频,但该控件还应该具有分页功能(每页显示 8 个项目)。
我想过使用表单视图,但表单视图的分页仅针对每一篇文章内容/数据行。
我也在考虑使用 gridview 但我不太确定是否可以得到这个布局。
任何想法请..非常感谢..谢谢!
i need to know what control in asp .net 2.0 to use to get this layout:
i need to display 8 videos at a time using 2 rows with 4 columns, but the control should also have paging (to display 8 items per page).
i've thought of using a formview but the paging for formview is per one article content / datarow only.
i'm also thinking of using gridview but i am not so sure if i can get this layout.
any thoughts please.. very much appreciated.. thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于上述场景,我认为您可以使用 ASP.NET 的 DataList 控件,它可以帮助您按列和行顺序制作控件。您必须以编程方式创建分页。
我给您提供的链接可以帮助您使用中继器控件创建寻呼。
首选: http://weblogs.asp.net/scottgu/archive /2006/01/07/434787.aspx
http://www.dotnetcurry .com/ShowArticle.aspx?ID=345
http://www.developer.com/net/asp/article.php/3646011/ASPNET-Tip-Creating-Paging-for-a-Repeater-Control.htm
http://www.codeproject.com/KB/webforms/Aspnet_Repeater_Control.aspx
For the above scenario i think yo can make use of DataList control of ASP.NET which can help you to make the controls in columns and rows order. You will have to create a Paging Programatically.
I am giving you the link which can help you to create a paging with Repeater Control.
Preferred: http://weblogs.asp.net/scottgu/archive/2006/01/07/434787.aspx
http://www.dotnetcurry.com/ShowArticle.aspx?ID=345
http://www.developer.com/net/asp/article.php/3646011/ASPNET-Tip-Creating-Paging-for-a-Repeater-Control.htm
http://www.codeproject.com/KB/webforms/Aspnet_Repeater_Control.aspx