public void modificar()
        {
            string mensaje = "";

            if (txtId.Text.Trim().Length == 0)
            {
                mensaje = mensaje + "Introduce la Clave \n";
            }
            if (txtNombre.Text.Trim().Length == 0)
            {
                mensaje = mensaje + "Introduce el nombre\n";
            }
            if (txtApellidoPat.Text.Trim().Length == 0)
            {
                mensaje = mensaje + "Introduce el apellido paterno \n";
            }
            if (txtCorreo.Text.Trim().Length == 0)
            {
                mensaje = mensaje + "Introduce el Correo \n";
            }
            if (input_municipio.Text.Trim().Length == 0)
            {
                mensaje = mensaje + "Introduce el municipio \n";
            }
            if (txtUsername.Text.Trim().Length == 0)
            {
                mensaje = mensaje + "Introduce el Username \n";
            }
            if (input_tipoUser.Text.Trim().Length == 0)
            {
                mensaje = mensaje + "Introduce el tipo de usuario \n";
            }
            if (txtPassword.Text.Trim().Length == 0)
            {
                mensaje = mensaje + "Introduce la contraseña \n";
            }


            if (mensaje.Trim().Length == 0)
            {
                BO.Usuario            obj     = new BO.Usuario();
                Servicios.UsuarioCtrl objCtrl = new Servicios.UsuarioCtrl();
                obj.Id_usuario   = Convert.ToInt32(txtId.Text.Trim().ToUpper());
                obj.Nombre       = txtNombre.Text.Trim().ToUpper();
                obj.Avatar       = txtAvatar.Text.Trim().ToUpper();
                obj.Apellido_pat = txtApellidoPat.Text.Trim().ToUpper();
                obj.Apellido_mat = txtApellidoMat.Text.Trim().ToUpper();
                obj.Correo       = txtCorreo.Text.Trim().ToUpper();
                obj.Telefono     = txtTelefono.Text.Trim().ToUpper();
                obj.Municipio    = input_municipio.Text.Trim().ToUpper();
                obj.Sitio_web    = txtSitioWeb.Text.Trim().ToUpper();
                obj.Username     = txtUsername.Text.Trim().ToUpper();
                obj.Tipo_usuario = Convert.ToInt32(input_tipoUser.Text.Trim().ToUpper());
                obj.Contrasenia  = txtPassword.Text.Trim().ToUpper();
                obj.Biografia    = txtBiografia.Text.Trim().ToUpper();
                string msn = objCtrl.actualizaObj(obj);
                if (msn == "La operación se realizó de manera correcta")
                {
                    Response.Redirect("wfTablaUsuario.aspx");
                }
                else
                {
                    Mensaje(msn);
                }
            }
            else
            {
                Mensaje("Favor de ingresar los siguientes datos:\n" + mensaje);
            }
        }