hey everyone,
How are cells of a row accessed in RadGrid,i have used data table as data source and i want to access cells something like this in Gridview.How can i achieve this?...
if (gvOrders.Rows.Count > 0)
{
foreach (GridViewRow row in gvOrders.Rows)
{
InsertOrder(Convert.ToInt32(row.Cells[0].Text), Convert.ToInt32(row.Cells[3].Text));
}
}
Thanks
Amit
How are cells of a row accessed in RadGrid,i have used data table as data source and i want to access cells something like this in Gridview.How can i achieve this?...
if (gvOrders.Rows.Count > 0)
{
foreach (GridViewRow row in gvOrders.Rows)
{
InsertOrder(Convert.ToInt32(row.Cells[0].Text), Convert.ToInt32(row.Cells[3].Text));
}
}
Thanks
Amit