網上看了很多用Controls[0].Controls[0]的方法,也很有道理,不過在有數據的情況寫可能出出現 Null異常,
這時你可以試試下面的方法,我感覺非常好用。
protected void GridViewSearchResult_RowCreated(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.EmptyDataRow)
{
((Label)(e.Row.FindControl("LabelKeyword"))).Text = Request ["keyword"];
}
}