您好我正在开发一个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);
}
}
答案 0 :(得分:0)
如果要获取gridview每行第一列的文本,请按如下方式使用代码: -
protected void GridView1_RowDataBound(object sender,GridViewRowEventArgs e) {
Response.Write(e.Row.Cells[0].Text);
}