如何将数据集中的值绑定到gridview页脚控件?

时间:2011-09-19 09:05:24

标签: c# .net asp.net

如何将数据从数据绑定到gridivew页脚控件,如文本框。 我写的代码就像......

TextBox T= (TextBox)GridView.FooterRow.FindControl("txtFooter");
T.Tex= ds.Tables[0].Rows[0]["MyFirend"].ToString();

我正在获取值,将值分配给页脚文本框,但值未显示

1 个答案:

答案 0 :(得分:1)

通常在网格的RowDataBound事件中执行此类绑定,例如:

protected void yourNiceGridViewControl_RowDataBound(object sender, GridViewRowEventArgs e)
{
  if (e.Row.RowType == DataControlRowType.Footer)
  {
    TextBox myTextBox = e.Row.FindControl("txtFooter") as TextBox;

    if( myTextBox != null ) 
    {

      myTextBox.Tex= ds.Tables[0].Rows[0]["MyFirend"].ToString();
    }
  }
}