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? My changes to
column 8 doesn't show in my gridview! Changes made with an itemtemplate works
just fine.
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? My changes to
column 8 doesn't show in my gridview! Changes made with an itemtemplate works
just fine.