public static String editarLink(String id, String nombre, String link)
        {
            detalleAnime form  = new detalleAnime();
            bool         idUsr = animeDAO.editarLink(id, nombre, link);

            //hay usuarios
            if (idUsr)
            {
                return("true");
            }
            //no hay usuarios
            else
            {
                return("false");
            }
        }