Hi How can i Add new rows using webdatagrid..
I was successfull doing it in winforms
foreach(DataRow a in dt.Rows)
{
datagrid.Rows.Add("text1","text2");
}
but on asp.net its not working
wdg1.Rows.Add(//Controldatarecord row);
How to do it? Thanks
Thanks
Hi good_c_ryan_19,
This is not possible. The rows collection is formed from the DataSource that the grid is bound to. There is no truly unbound mode like this. Why can you not just filter out the rows from the source that you do not want to see.
regards,David Young