public string consultarNoticiasUlNoSeleccionados(string idGrupo, string ancho) // esto es por grupo de noticia guardado
        {
            PPersistencia.ejecutaProcedures ejec = new PPersistencia.ejecutaProcedures();
            List <string[]> resultado            = ejec.ejcPsdConsultaNOticiaNoSelect(idGrupo);

            if (resultado.Count > 1)
            {
                //return Gen.Util.CS.Gen.convertToHtmlTableSortGrupoNoticia(resultado, "sortable1", "droptrue' style='width:" + ancho + ";", 1);
                return(Gen.Util.CS.Gen.convertToHtmlTableSort(resultado, "sortable1", "droptrue' style='width:" + ancho + ";"));
            }
            else
            {
                return("<div>No se encontraron resultados para mostrar en la tabla</div>");
            }
        }