Hi,
I am seeming to have problems with the dataset in c#. I can create a table and bind it but I am unable to add collums or rows.
Here is what I have so far:
ThanksPHP Code:System.Data.DataSet mydataSet = new DataSet();
mydataSet.Tables.Add("datafields");
//here is where i need to add two collums and my rows
dataGrid1.DataSource = mydataSet;
Jeremy


Reply With Quote