protected void btnConfirmar_Click(object sender, EventArgs e)
        {
            if (string.IsNullOrEmpty(txtNombre.Text))
            {
                ClientScript.RegisterStartupScript(this.GetType(), "mensaje", "verificacionNull(true)", true);
            }
            else
            {
                List <Unidad> listaUnidad = new UnidadCollection().ReadAll().ToList();
                Unidad        unidad      = new Unidad();
                unidad.IdUnidad = listaUnidad.Max(iu => iu.IdUnidad) + 1;


                unidad.Nombre = txtNombre.Text;

                if (unidad.Create())
                {
                    ClientScript.RegisterStartupScript(this.GetType(), "mensaje", "verificacion(true)", true);
                }
                else
                {
                    ClientScript.RegisterStartupScript(this.GetType(), "mensaje", "verificacion(false)", true);
                }
            }
        }