hi
i have one problem to get the particular cell value in gridview, i am using RowDataBound method
below is my coding
protected void gvdApproverStatus_RowDataBound(object sender, GridViewRowEventArgs e)
{
try
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
if (e.Row.Cells[10].Text == "1")
{
Button btn = (Button)e.Row.FindControl("btnAccept");
btn.Visible = false;
}
}
}
catch (Exception ex)
{ }
}
but i cant to get the cells[10] value ,its shows the null ,
Thanks in Advance..
Regards
Kavi.n