1

我正在使用带有自动生成列 =true 的网格视图;当我更新网格时

  protected void UpdateRecord(object sender, GridViewUpdateEventArgs e)
    { 
     TextBox tPropertyId  = (TextBox)row.FindControl("PropertyId");
    }

正在被调用。问题是那个,tPropertyId正在获取空值,当我这样做时 tPropertyId.Text,我得到空引用异常。

请帮忙。

4

1 回答 1

0

Please try this

protected void UpdateRecord(object sender, GridViewUpdateEventArgs e)
{ 
    if (e.Row.RowType != DataControlRowType.Footer) return;
    TextBox textBox = new TextBox();
    e.Row.Cells[0].Controls.Add(textBox);
}
于 2012-05-04T12:42:29.847 回答