13/12/2007, 09:35
|
| | Fecha de Ingreso: diciembre-2007
Mensajes: 13
Antigüedad: 17 años, 1 mes Puntos: 0 | |
Re: Formato a un datagrid automático Compaños,
despues de muchos intentos pude configurar el formato de fecha aqui esta el codigo por si les sirve
protected void Grillaliquidacion_ItemDataBound(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e)
{
double x;
DateTime y;
foreach (TableCell cel in e.Item.Cells)
{
if (double.TryParse(cel.Text, NumberStyles.Number, null, out x))
cel.Attributes.Add("style", "text-align: right");
if (DateTime.TryParse(cel.Text, out y))
{
y = Convert.ToDateTime(cel.Text);
cel.Text = y.ToString("MM/dd/yyyy");
}
}
} |