Programmatically changing text in a BoundColumn in a DataGrid?

  • Thread starter Thread starter Jen
  • Start date Start date
J

Jen

I have a BoundColumn that displays a numeric value. I want to override the
number if it is zero and display a string instead. What's the easiest way
to do that?

Thanks in advance.
 
I have a BoundColumn that displays a numeric value. I want to override the
number if it is zero and display a string instead. What's the easiest way
to do that?

Thanks in advance.

Hi...

in itemdataboud check the item you want to check and change the
value...

protected void GridView1_RowDataBound(object sender,
GridViewRowEventArgs e)
{
if (e.Row.Cells[6].Text == "0")
e.Row.Cells[6].Text = "Zero";
}

Thanks
Md. Masudur Rahman (Munna)
Kaz Software Ltd.
www.kaz.com.bd
http://munnacs.110mb.com
 
Back
Top