int i=0;
protected void Gvnew_RowDataBound(object sender, GridViewRowEventArgs e)
{
if(e.Row.RowType == DataControlRowType.DataRow )
{
if (i>2)
{
Label lab = (Label)e.Row.FindControl("Label1");
lab.Text = " new";
i++;
}
}
}