Well , it took me sometime to understand how to add rows and columns to the datagrid dynamically using C# and ASP.NET .Infact its very simple provided u remember to few syntax of DataColumn and DataRow.
Here are the steps.
1. Create a DataTable Object which we will use to bind to the datagrid.
DataTable dt=new DataTable();
2. Assume we need two Columns in the DataGrid, so create 2 DataColumn Object.(If u need n columns then we need n DataColumn Objects)
DataColumn col1=new DataColumn("Regno", typeof(System.String));
DataColumn col2=new DataColumn("Name", typeof(System.String));
3. Add it to the table
dt.Columns.Add(col1); dt.Columns.Add(col2);
4. To add the rows(say 2 rows)
for(int i=0;i<2;i++)
{
DataRow row1 = dt.NewRow();
row1 ["Regno"] = "06PG0225";
row1 ["Name"] ="Senthil Kumar";
dt.Rows.Add(row1 );
}
5. Now iterate through each datacolumn.
foreach (DataColumn col in dt.Columns)
{
BoundField bField = new BoundField
bField.DataField = col.ColumnName;
bField.HeaderText = col.ColumnName;
GridView1.Columns.Add(bField);
}
GridView1.DataSource = dt;
GridView1.DataBind();
6. Now run the Page and Check your GridView1 filled with records…

1 comment
Adding rows and columns to DataGrid Dynamically | ProgramInDotnet
[...] via Adding rows and columns to DataGrid Dynamically. [...]
Aug 7, 2011