我在gridview的列(日期时间)中有一些值(08:12,09:22,01:09)
我想要的是在页脚中的文本框中获取该列中存在的所有值的总和那一栏的。
我尝试了下面的代码 -
int hours, minutes;
TextBox footxt = (TextBox)GridView2.FooterRow.FindControl("footxt1");
foreach (GridViewRow row in GridView2.Rows)
{
TextBox txts = (TextBox)row.FindControl("text11");
TimeSpan ts = TimeSpan.Parse(txts.Text);
hours = ts.Hours;
minutes = ts.Minutes;
hours += hours;
minutes += minutes;
footxt.Text = Convert.ToString(hours);
}
但它不起作用!