在asp.net

时间:2016-09-01 03:29:28

标签: c# asp.net gridview

我试图在Gridview中对一个日期列进行SUM。请参考我的代码。编译器错误 - 无法将int转换为字符串。

请告知。

由于

protected void GridViewFortNight_RowDataBound(object sender, GridViewRowEventArgs e)
        {

            TimeSpan timeSpent = TimeSpan.Parse("00:00:00");

            if (e.Row.RowType == DataControlRowType.DataRow)
            {
                timeSpent += TimeSpan.Parse(DataBinder.Eval(e.Row.DataItem, "TimeSheetDayTotal"));
            }
            else if (e.Row.RowType == DataControlRowType.Footer)
            {
                e.Row.Cells[4].Text = timeSpent.ToString(@"dd\:hh\:mm");
            }

        }

1 个答案:

答案 0 :(得分:0)

您在gridview页脚中添加了标签。 你计算它的Gridview行更新事件。 我希望你理解它。