public string consultarGruposDeNoticia(string ancho)
        {
            PPersistencia.ejecutaProcedures ejec = new PPersistencia.ejecutaProcedures();
            List <string[]> resultado            = ejec.ejcPsdConsultaGruposNoticia();

            if (resultado.Count > 1)
            {
                List <int> listaEvitar = new List <int>();
                return(Gen.Util.CS.Gen.convertToHtmlTableDelete(resultado, "tableToOrder", "tblComun' style='width:" + ancho + ";", listaEvitar, true, false, true, true, 0, 1));
            }
            else
            {
                return("<strong>No se encontraron resultados para mostrar en la tabla</strong>");
            }
        }