Hi
Someone please help me
string typ;
if (e.Row.RowType == DataControlRowT ype.DataRow)
{
typ = e.Row.Cells[4].Text;
I got this line in onRowDataBound
I have a problem, WHEN I SET THIS boundfield -> column 4, as Visible =true (to display in gridview), i can get th value by above code line.
If i set visible =false (which I don't want display in gridview), i cant get the value.
Someone please help me
string typ;
if (e.Row.RowType == DataControlRowT ype.DataRow)
{
typ = e.Row.Cells[4].Text;
I got this line in onRowDataBound
I have a problem, WHEN I SET THIS boundfield -> column 4, as Visible =true (to display in gridview), i can get th value by above code line.
If i set visible =false (which I don't want display in gridview), i cant get the value.
Comment