在asp.net中,gridview和repeater控件有什么区别

发布于 2024-12-03 13:01:48 字数 52 浏览 4 评论 0 原文

我已经使用这两种控件来进行简单的应用程序开发。两者几乎执行相同的功能。它们之间有什么区别?

I have worked with both the controls for simple application development . Both almost do the same functionality. What is the difference between them ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

So要识趣 2024-12-10 13:01:48

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.

最偏执的依靠 2024-12-10 13:01:48

这两个控件都是数据绑定 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文