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); 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); 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#