Estimados , de hecho si llegaste aqui, es porque no has encontrado este codigo facilmente por internet, pues aqui te lo paso.
int columnIndex = 0;
foreach (GridViewRow row in oGridView.Rows)
{
foreach (DataControlFieldCell cell in row.Cells)
{
if (cell.ContainingField is BoundField)
if (((BoundField)cell.ContainingField).DataField.Equals("Cantidad"))
{
}
else
{
//cell.CssClass = "text";
cell.Attributes.Add("style", "mso-number-format:\\@");
}
columnIndex++; // keep adding 1 while we don't have the correct name
}
}
No hay comentarios:
Publicar un comentario