how to display empty table to datagrid

Answers were Sorted based on User's Feedback



how to display empty table to datagrid..

Answer / dinesh sharma

DataTable tbl=new DataTable;
DataColumn ID=new
Datacolumn("ID",System.Type.GetType("System.Int"));
DataColumn Name=new
DataColumn("NAME",System.Type.GetType("System.String"));
tbl.Columns.add("ID");
tbl.Columns.Add("NAME");
Datarow dr =null;;
for (int i=0;i<100;i++)
{
dr=tbl.NewRow();
}
datagridview1.datasource=tbl;

Is This Answer Correct ?    14 Yes 1 No

how to display empty table to datagrid..

Answer / neha

DataTable tbl=new DataTable();
tbl.Columns.Add("ID", typeof(int));
tbl.Columns.Add("Name");

datagridview.DataSource=tbl;

Is This Answer Correct ?    1 Yes 0 No

how to display empty table to datagrid..

Answer / radhat

This works, but it only provides one empty row.
It doesn't give you 100 empty rows as your code suggests.
To fix this I added:

dr = tbl.Rows.Add();

right underneath the .NewRow(); line

Hope this helps anyone looking for an empty table.

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More ADO.NET Interview Questions

What is data view and variable view?

0 Answers  


Whate are different types of Commands available with DataAdapter ?

2 Answers  


What are the advantages using ado.net?

0 Answers  


What is the meaning of executenonquery?

0 Answers  


How many major types of connection objects in ADO.NET?

0 Answers   MCN Solutions,






What is the difference between data grid and data repeater?

0 Answers  


What are the two fundamental objects in ADO.NET?

6 Answers  


What is difference in record set and dataset?

0 Answers  


Which is faster dataset or datareader?

0 Answers  


can u tell me the why ADO does not support xml..

2 Answers   Crea,


What is ado connection?

0 Answers  


What is the use of ADO.NET and XML web services?

0 Answers   TCS,


Categories