For my corporate intranet projects, grids are indispensable. They are the foundation for easy reporting on the ASP.NET webforms platform.
Easy to Design
Paste the grid on the page. Insert BoundField objects for simple binding. HyperlinkFields asp:HyperlinkField for easy linking.
Binding
You can bind grids in a handful of ways:
- a collection of objects (ListOf, Array
List, hashtableArrayList,Hashtable, or any simple collection) - sqlDataReader
SqlDataReaderin your code-behind (yikes, that would require SQL in your presentation tier)- sqlDataSource
SqlDataSource(specifying specify a sprocstored proc. All the columns on the resultset map directly to the grid's columns. It's a very quick and dirty if the report doesn't mimic your domain object nicely. i.e. summations of different things.)- objectDataSource (binding to a method on your BL)
For those who would might call out SqlDataSource and ObjectDataSource, you don't always have to have them declared in your .aspx.cs or .aspx.vb . I am not advocating them here, just pointing out the possibilities.
I don't think you can discount the RAD benefits of the Gridview built-in GridView and other 3rd party grids. Management types love and want tabular data.
