1
Answer

C# convert object array into datatable

George George

George George

16y
20.3k
1

Hello everyone,

I failed to find a sample about how to convert an array instances of user defined types into a (C# ADO.Net) datatable -- I want to use the datatable to bind to ASP.Net data bound controls (e.g. gridview). Could anyone provide a sample or recommend me to some simple samples?

Another question is, whether it is a must to convert to datatable in order to bound to controls in ASP.Net? Could I bound to any array of user defined types?

thanks in advance,
George

Answers (1)
1
Satish Mahapatra

Satish Mahapatra

NA 70 0 16y

Hi

You can try like this

DataTable dt=new DataTable()

string df = "1,2,1,3";

int i;

DataColumn dc = new DataColumn();

dt.Columns.Add(dc);

for (i=0;i<df.Length;i++)

{

DataRow dr = dt.NewRow();

dr[dc] = df.Split (',')[i];

dt.Rows.Add(dr);

}