在asp.net中,gridview和repeater控件有什么区别
我已经使用这两种控件来进行简单的应用程序开发。两者几乎执行相同的功能。它们之间有什么区别?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我已经使用这两种控件来进行简单的应用程序开发。两者几乎执行相同的功能。它们之间有什么区别?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
这里有一个表比较数据绑定服务器控件:
http://weblogs.asp.net/anasghanem/archive/2008/09/06/comparing-listview-with-gridview-datalist-and-repeater.aspx
There is a table here that compares the data bound server controls:
http://weblogs.asp.net/anasghanem/archive/2008/09/06/comparing-listview-with-gridview-datalist-and-repeater.aspx
GridView 始终呈现为网格。 Repeater 允许您创建自己的模板布局。例如,您可以将内容放入 div 中。 GridView 还具有更丰富的对象模型,而 Repeater 则相当简单。
是的,您可以使用两者获得相似的结果,但它们远非同一件事。
GridView always renders as a grid. Repeater allows you to create your own template layout. For instance, you can put things in divs. GridView also has a much more rich object model, while repeater is rather simplistic.
Yes, you can achieve similar results with both, but they are nowhere near the same thing.
这两个控件都是数据绑定 Web 服务器控件。
GridView
:它将数据显示为表格,并且能够执行排序、分页、编辑和删除记录。Repeater
:模板数量少于 GridView。它从数据源呈现一个只读列表。Both these controls are Data-Bound Web Server control.
GridView
: It displays data as a table and has ability to preform sort, paging,edit and delete a record.Repeater
: has fewer templates then GridView. It renders a read-only list from the datasource.