我的屏幕上有两个标签,我计算值并显示在gridview下面的页面中。
是否可以向特定列索引显示标签。有我的标签,我需要在4&的列索引下面显示它们。 5。
Label4.Text = sum2.ToString();
Label5.Text = sum1.ToString();
答案 0 :(得分:1)
您可以在GridView的页脚中显示它们,而不是在单独的标签中显示总和。 这个tutorial显示了如何执行此操作。基本上,您必须执行以下步骤:
RowDataBound事件处理程序的示例:
protected void gridView_RowDataBound(Object sender, GridViewRowEventArgs e)
{
if(e.Row.RowType == DataControlRowType.Footer)
{
e.Row.Cells[1].Text = sum1.ToString();
e.Row.Cells[2].Text = sum2.ToString();
}
}