您好,我正在开发一个 asp.net 项目。
我正在使用数据库和gridview。我想在创建每个 gridviewrow 时获取它的第一个单元格的名称。为什么这不起作用?
protected void CustomersGridView_RowCreated(Object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
Response.Write(e.Row.Cells[0].Text);
}
}