Ejemplo n.º 1
0
    protected void B_Seleccionar_Click(object sender, EventArgs e)
    {
        //Session["l"] = null;
        AgregarProductos agregar = new AgregarProductos();

        llenarVenta(agregar.AnalizarGridView(TB_Cantida.Text.ToString(), double.Parse(LTalla.Text.ToString()), LRef.Text.ToString(), Session["sede"].ToString(), (List <Producto>)Session["lis"]));
        string msg = agregar.get_mensaje();

#pragma warning disable CS0618 // Type or member is obsolete
        RegisterStartupScript("mensaje", "<script type='text/javascript'>alert('" + msg + "');</script>");
#pragma warning restore CS0618 // Type or member is obsolete
        actualizarGV_Venta();
    }
Ejemplo n.º 2
0
    protected void B_Seleccionar_Click(object sender, EventArgs e)
    {
        //Session["l"] = null;
        AgregarProductos agregar = new AgregarProductos();

        foreach (GridViewRow row in GV_VentaPedido.Rows)
        {
            llenarVenta(agregar.AnalizarGridView(Convert.ToString(((TextBox)row.Cells[2].FindControl("TB_Cantidad")).Text), Convert.ToDouble(((Label)row.Cells[1].FindControl("L_Talla")).Text), Convert.ToString(((Label)row.Cells[0].FindControl("L_Referencia")).Text), Session["sede"].ToString(), (List <Producto>)Session["lis"]));
            string msg = agregar.get_mensaje();
#pragma warning disable CS0618 // Type or member is obsolete
            RegisterStartupScript("mensaje", "<script type='text/javascript'>alert('" + msg + "');</script>");
#pragma warning restore CS0618 // Type or member is obsolete
        }
        actualizarGV_Venta();
    }