el tema es el siguiente yo se hacerlo en un datagridview en un Winform sin problemas de esta manera:
Código:
Pero en un WebForm no encuentro la manera de hacerlo: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";
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