private void FillDetalle(int IdNoticia) { eNoticia oItem = HttpServices.GetItem_Noticia(IdNoticia); if (oItem != null) { litFecha.Text = oItem.fecha; litTitulo.Text = oItem.titulo; litDescripcion.Text = oItem.descripcion; } int IdPlantilla_Contacto = 27; int IdMenuWeb_Contacto = 5; List <eArticulo> list = lCMS.ArticuloPlantilla_listarWeb(IdPlantilla_Contacto, IdMenuWeb_Contacto, oSeccionWeb.IdIdioma); if (list.Count > 0) { lnkContactanos.NavigateUrl = ClientScriptHelper.getEnlace_Articulo(list[0]); } }