Difference between datagrid and gridview

Asked By 0 points N/A Posted on -
qa-featured

 

What is the difference between DataGrid and GridView in asp.net?

SHARE
Best Answer by Sharath Reddy
Answered By 0 points N/A #90310

Difference between datagrid and gridview

qa-featured

 

There are a number of differences between GridView and DataGrid. First of all the GridView has various new features and merits over the DataGrid control. Features like; -Richer design time capabilities, -data source capabilities which are a bit improved, -It also has a customized pager user interface with a pager template property, not forgetting the additional column types and design-time column operations. The GridView and the DataGrid also differ in such a way that they have different custom paging support and also different event models.

Nice reading

Best Answer
Best Answer
Answered By 590495 points N/A #90311

Difference between datagrid and gridview

qa-featured

 

The DataGrid Web server control is a powerful tool for displaying information from a data source. It is easy to use. You can display editable data in a professional-looking grid by setting only a few properties. At the same time, the grid has a sophisticated object model that provides you with great flexibility in how you display the data.

The GridView control enables you to select, sort, and edit the values of a data source displayed in a table where each column represents a field and each row represents a record. The GridView control supports these features:

  • Built-in row selection capabilities.
  • Binding to data source controls, such as SqlDataSource.
  • Customizable appearance through themes and styles.
  • Built-in update and delete capabilities.
  • Programmatic access to the GridView object model to dynamically set properties, handle events, and so on.
  • Built-in sort capabilities.
  • Built-in paging capabilities.
  • Multiple key fields.
  • Multiple data fields for the hyperlink columns.

Related Questions