public string consultarProveedorPorGrNoticia(string idGGrNoticia, string ancho)
        {
            PPersistencia.ejecutaProcedures ejec = new PPersistencia.ejecutaProcedures();
            List <string[]> resultado            = ejec.ejcPsdConsultaProvedorPorGrupoNoticia(idGGrNoticia);

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