Description of Building a data grid using ADO.NET and SQL Server :
Building a data grid using ADO.NET and SQL Server is a tutorial which explains you how ADO.NET objects are used to fetch the data from the database table and binds the data to the datagrid control. In this article the author creates DataAdapter and DataSet objects, fills the dataset object using the fill method of the DataAdapter, set the DataSource property of the datagrid control to DataSet and finally calls the DataBind() to integrate the data to the datagrid control.