protected void btnEliminar_Click(object sender, EventArgs e)
        {
            Unidad unidad = new Unidad();

            unidad.IdUnidad = ddlUnidades.SelectedIndex;
            if (unidad.Delete())
            {
                ClientScript.RegisterStartupScript(this.GetType(), "mensaje", "verificacionDelete(true)", true);
            }
            else
            {
                ClientScript.RegisterStartupScript(this.GetType(), "mensaje", "verificacionDelete(false)", true);
            }
        }