Пример #1
0
    /////////////////////////////////////////////////////////////////////////////////////////arreglado
    public void llenarGridView()
    {
        LlenarGridViews llenara = new LlenarGridViews();

        GV_VentaPedido.DataSource = llenara.llenarGridView(Session["sede"].ToString(), pbNV);
        GV_VentaPedido.DataBind();
    }
Пример #2
0
    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();
    }