G
Guest
One the columns in my gridview needs to be computed.
I am not able to get my computed value to stick.
DataTable orders;
getSqlData(orders);
for (i = 0; i < orders.Rows.Count; i++)
{
orders.Rows[8] = i * 8;
}
GridView1.DataSource = orders;
GridView1.DataBind();
How can I get a gridview control to display my computation?
I am already using an ItemTemplate for some of my columns but an
ItemTemplate will not work at this time
I am not able to get my computed value to stick.
DataTable orders;
getSqlData(orders);
for (i = 0; i < orders.Rows.Count; i++)
{
orders.Rows[8] = i * 8;
}
GridView1.DataSource = orders;
GridView1.DataBind();
How can I get a gridview control to display my computation?
I am already using an ItemTemplate for some of my columns but an
ItemTemplate will not work at this time