我在 Visual Studio 中使用 C# 进行项目。在我的项目中,它下面有一个 gridview 和一个按钮。当我点击按钮时,我想计算我的工人的总工作时间到最后一行。我阅读了所有类似的主题,但我的代码有问题。如果您有更多/任何说明性示例,请帮助我,我真的需要帮助。我的项目期限很短。
这是逻辑;
Sunday Monday Tuesday ........ TOTAL
10 50 5 ........ 65 works like this..
其实我不想在我的gridview下只使用一个按钮。我想为每一行的每个工人使用......
这是 ButtonClick 代码,但我不想这样使用。我需要添加模板列,其中包含每一行的按钮。我知道但是怎么做?它总是失败,我总是遇到一些错误。
protected void Button1_Click(object sender, EventArgs e)
{
foreach (GridViewRow row in GridView1.Rows)
{
row.Cells[10].Text = (Convert.ToInt32(row.Cells[3].Text) + Convert.ToInt32(row.Cells[4].Text)).ToString() +
(Convert.ToInt32(row.Cells[5].Text) + Convert.ToInt32(row.Cells[6].Text)).ToString() +
(Convert.ToInt32(row.Cells[7].Text) + Convert.ToInt32(row.Cells[8].Text)).ToString() +
(Convert.ToInt32(row.Cells[9].Text));
}
}