repeater and gridview diff?

Why is repeater fast than gridview?

Answer Posted / karthika.s

Repeater


Repeater is okay if you need to show data from some data
source. It offers the basic rendering options: header, item,
alternating item, separator and footer. It is really up to
developer how to fill these templates. By example, it is
easy to use Repeater to show read-only lists using templated
elements.


Repeater is faster because it offers only basic data bound
control rendering functionalities. If you want to show data
and you don't need any complex features described below then
repeater is the right joice.

GridView


GridView is rendered as table with columns and it is created
to show data and let users to manipulate it. GridView offers
powerful built-in features like:


* events for sorting data when user clicks on column
heading,
* row selection,
* row operations like adding, editing and deleting,
* paging,
* command columns and events to handle the commands.



GridView is excellent choice if there is a need to show
tabular data and also provide users with features described
above.

Is This Answer Correct ?    6 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Define page output caching?

737


Is oauth for authentication or authorization?

753


Difference between using directive vs using statement?

685


What do you mean by query string?

703


What is asp.net response object?

764


Can you explain one critical mapping?

725


What is the difference between union and join?

741


What is active web pages?

675


Explain the concept of event bubbling in ASP.NET?

789


Where is http session stored?

663


What is the life-span of the items in the viewstate?

703


Explain the difference between inline and code behind - which is best in?

711


What kind of data we can store in viewstate?

776


What is the difference between sealed vs static class?

767


What is the concepts of globalization and localization in .net?

711