hi cerebrus and brandon, thanx for your response,
Yes cerebrus your tip realy helped me alot,but i also come up with
another solution i.e in the rowCreated event of that grid
i just made those fields invisible,which i dont want to display.
here is the code,which i used

protected void GV_RowCreated(object sender, GridViewRowEventArgs e)
{
    if (e.Row.DataItemIndex > -1)
    {
        e.Row.Cells[3].Visible=false;
    }
}

Reply via email to