/////////////////////////////////////////////////////////////////////////////////////////arreglado public void llenarGridView() { LlenarGridViews llenara = new LlenarGridViews(); GV_VentaPedido.DataSource = llenara.llenarGridView(Session["sede"].ToString(), pbNV); GV_VentaPedido.DataBind(); }
protected void B_BuscarProducto_Click(object sender, EventArgs e) { AgregarProductos boton = new AgregarProductos(); GV_VentaPedido.DataSource = boton.actualizar(((TextBox)GV_VentaPedido.HeaderRow.FindControl("TB_BuscarReferencia")).Text, ((TextBox)GV_VentaPedido.HeaderRow.FindControl("TB_BuscarTalla")).Text, Convert.ToString(Session["sede"]), pbNV);; GV_VentaPedido.DataBind(); }