Exemplo n.º 1
0
    protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
    {
        int pedido = int.Parse(Request.QueryString["pedido"]);

        if (e.CommandName == "borrar")
        {
            // Retrieve the row index stored in the
            // CommandArgument property.
            int index = Convert.ToInt32(e.CommandArgument);

            // Retrieve the row that contains the button
            // from the Rows collection.
            GridViewRow row = GridView1.Rows[index];

            // Add code here to add the item to the shopping cart.
            int NL = int.Parse(row.Cells[0].Text);

            Almacenaje a = new Almacenaje();
            a.borraProductoEnPedido(pedido, NL);
        }
    }