可以呀,在RowDataBound中自定义好了。
参考:
    protected void gridview1_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        if (e.Row.RowType == DataControlRowType.DataRow)
        {
            
            //这里放入自定义的数据库操作            Label label1= (Label)e.Row.FindControl("label2");            label1.Text="数据库返回值"
        }
    }