Bind GridView Using DataTable

In this article I will cover the basics of creating DataTable to get data and fill into the ASP GridView Control to fill, bind, and show the data.

Step 1: Firstly, we need to create an empty project by opening Visual Studio by pressing command devenv in the Start menu search bar or using Windows Run-Command by pressing (Windows icon + R ) and enter devenv. It will open the installed version of Visual Studio.

If by pressing this opens the old one, you can change it by changing the registry value for updated version by following this link.

 

Step 2: Now after opening Visual Studio you can create new a website by going to File, New, then Website or by pressing Shift+Alt+N command in Visual Studio.
 
 
Step 3: Now give a name to the project and also select desired location of website.
 
 
Step 4: Now create a new web form by pressing combination of keys (Ctrl + Shift + A).

 
 
Step 5: Now we first add GridView control to the Web Form.  
  1. <form id="form1" runat="server">    
  2.      <div>    
  3.          <asp:GridView ID="gvitems" runat="server" AutoGenerateColumns="false">    
  4.              <Columns>    
  5.                  <asp:BoundField DataField="ItemId" HeaderText="Item ID" ItemStyle-Width="30" />    
  6.                  <asp:BoundField DataField="ItemName" HeaderText="Item Name" ItemStyle-Width="150" />    
  7.                  <asp:BoundField DataField="ItemQuantity" HeaderText="Item Quantity" ItemStyle-Width="150" />    
  8.              </Columns>    
  9.          </asp:GridView>    
  10.      </div>    
  11.  </form>   
Note: (Possible Exceptions)
  1. Make sure that GridView control must be placed in <form> tag with runat='server' attribute. 

  2. Another thing  which you need to take care of is that you must use AutoGenerateColumns="false". 
If you are using custom columns which are binding date the you must set this attribute to false otherwise see the image for reference.
 
 
As you can see the columns repeated by default, it is set to true when you set it to false and  it come to its original position of number of assigned columns.
 
Step 6: Import the required Namespace. 
  1. using System.Data;  
Step 7: Now we can write the ADO.NET server side code to generate columns, add new values to row and finally bind it to the GridView. 
  1. if (!Page.IsPostBack)    
  2. {    
  3.     DataTable dt = new DataTable();    
  4.     dt.Columns.AddRange(new DataColumn[3] { new DataColumn("ItemId"typeof(int)),    
  5.                     new DataColumn("ItemName"typeof(string)),    
  6.                     new DataColumn("ItemQuantity",typeof(string)) });    
  7.     dt.Rows.Add(1, "Flour""500 Kg");    
  8.     dt.Rows.Add(2, "Tea""20 Kg");    
  9.     dt.Rows.Add(3, "Rice""1000 Kg");    
  10.     gvitems.DataSource = dt;    
  11.     gvitems.DataBind();    
  12. }  
Let's elaborate code one by one.
  1. DataTable dt = new DataTable();  
Initialize the new instance of DataTable class by new Keyword.
  1. dt.Columns.AddRange(new DataColumn[3] { new DataColumn("ItemId"typeof(int)),  
  2.     new DataColumn("ItemName"typeof(string)),  
  3.     new DataColumn("ItemQuantity",typeof(string)) });  
  4.             
Add columns to the array to the end of collection.
  1. dt.Rows.Add(1, "Flour""500 Kg");    
  2.             dt.Rows.Add(2, "Tea""20 Kg");    
  3.             dt.Rows.Add(3, "Rice""1000 Kg");    
Create a new row with specified values and add to the data row collection.  
  1. gvitems.DataSource = dt;  
Gets or sets the object from which the data-bound control retrieves its list.
  1. gvitems.DataBind();  
Bind the DataSource to the GridView control.
 
Step 8: Final Output
 
 

Up Next
    Ebook Download
    View all
    Learn
    View all