Asp.Net DataSet example

Below is a paging enabled GridView control, which got its data from a DataSet object.
A DataSet in Asp.Net, represents a set data. The DataSet is filled with data extracted from a database table.

Since the Grid is hooked to a DataSet, the grid does not have to connect to a database table to fetch data.

BookIDBookNameCategoryPricePrice_Range
1Computer ArchitectureComputers125.60100-150
2Advanced Composite MaterialsScience172.56150-200
3Asp.Net 4 Blue BookProgramming56.0050-100
4Strategies UnpluggedScience99.9950-100
5Teaching ScienceScience164.10150-200
12

Go to tutorial