protected void btnAgegar_Click(object sender, EventArgs e)
        {
            if (ValidarUsuario())
            {
                CreaturDatos.Datos.tblUsuario agreUser = new CreaturDatos.Datos.tblUsuario();
                agreUser.Nombre      = txtNombre.Text;
                agreUser.Correo      = txtCorreo.Text;
                agreUser.Contra      = txtContra.Text;
                agreUser.TipoUsuario = cmbTipoUsuario.SelectedValue;

                using (CreaturDatos.Datos.ModelCreaturHotelesContainer con = new Datos.ModelCreaturHotelesContainer())
                {
                    con.tblUsuarios.Add(agreUser);
                    con.SaveChanges();
                    Response.Write(@"<script language='javascript'>alert('Los datos se guardaron con exito');</script>");
                    txtNombre.Text = "";
                    txtCorreo.Text = "";
                    txtContra.Text = "";
                }
            }
        }
        protected void btnAgegar_Click(object sender, EventArgs e)
        {
            if (ValidarUsuario())
            {
                CreaturDatos.Datos.tblUsuario agreUser = new CreaturDatos.Datos.tblUsuario();
                agreUser.Nombre = txtNombre.Text;
                agreUser.Correo = txtCorreo.Text;
                agreUser.Contra = txtContra.Text;
                agreUser.TipoUsuario = cmbTipoUsuario.SelectedValue;

                using (CreaturDatos.Datos.ModelCreaturHotelesContainer con = new Datos.ModelCreaturHotelesContainer())
                {
                    con.tblUsuarios.Add(agreUser);
                    con.SaveChanges();
                    Response.Write(@"<script language='javascript'>alert('Los datos se guardaron con exito');</script>");
                    txtNombre.Text = "";
                    txtCorreo.Text = "";
                    txtContra.Text = "";
                }
            }
        }