Beispiel #1
0
        protected void DeleteButton_Click(object sender, EventArgs e)
        {
            Recepciones recepciones = new Recepciones();

            if (recepciones.Eliminar(Convert.ToInt32(IdRecepcionTextBox.Text.Trim())))
            {
                MensajeLabel.ForeColor = System.Drawing.Color.Green;
                MensajeLabel.Text      = "Se elimino la recepcion.";
                LimpiarCampos();
            }

            LimpiarCampos();
        }