Ver Mensaje Individual
  #1 (permalink)  
Antiguo 07/03/2011, 06:47
evikar
 
Fecha de Ingreso: julio-2010
Mensajes: 19
Antigüedad: 14 años, 4 meses
Puntos: 0
Dar formato columna c# webform gridview

Estimados necesito darle formato a un par de columnas a un gridview en webform asp.net ...
el tema es el siguiente yo se hacerlo en un datagridview en un Winform sin problemas de esta manera:

Código:
SqlCommand cm3 = new SqlCommand("select Descripcion=b.descr,Codigo=a.invtid,Pedido=a.qtyord,Precio=a.curyslsprice,Descuento=a.chaindisc,Total=a.curytotord,Picking=a.qtyship,Facturado=a.qtycloseship from soline a, inventory b where a.invtid=b.invtid and ordnbr='" + txtnumorden.Text + "'", cn);
                    SqlDataAdapter ad3 = new SqlDataAdapter(cm3);
                    DataTable da3 = new DataTable();
                    ad3.Fill(da3);
                    this.dgproductos.DataSource = da3;
                    this.dgproductos.Columns["Precio"].DefaultCellStyle.Format = "N0";
                    this.dgproductos.Columns["Total"].DefaultCellStyle.Format = "N0";
Pero en un WebForm no encuentro la manera de hacerlo:

Código:
SqlCommand cm3 = new SqlCommand("select Descripcion=b.descr,Codigo=a.invtid,Pedido=a.qtyord,Precio=a.curyslsprice,Descuento=a.chaindisc,Total=a.curytotord,Picking=a.qtyship,Facturado=a.qtycloseship from soline a, inventory b where a.invtid=b.invtid and ordnbr='" + txtnumorden.Text + "'", cn);
                    SqlDataAdapter ad3 = new SqlDataAdapter(cm3);
                    DataTable da3 = new DataTable();
                    ad3.Fill(da3);
                    this.dgproductos.DataSource = da3;
                    this.dgproductos.DataBind();

les deje puesto como lleno un datagridview en un winform y como lleno un gridview en un webform ... todo esto lo realizo en c#, mehan dado alguns pista con el evento rowdatabound pero sinceramente no e podido resolver este problema