Pregunta

Estoy usando SharePoint 2013 y he establecido una pequeña base de conocimientos. Estoy mostrando el ID oculto de la página de Wiki Enterprise en la página usando este código:

<SharePoint:EncodedLiteral runat="server" text="Article ID:" EncodeMethod="HtmlEncode"/></strong></b>
<SharePoint:NumberField id="XXXXX" ControlMode="Display" FieldName="1d22ea11-1e32-424e-89ab-9fedbadb6ce1" runat="server"/>

Ahora mi objetivo es buscar en este ID de artículo y encontrarlo inmediatamente.es posible?

¿Fue útil?

Solución

Yes, create a managed property for the field and call it e.g. ArticleID. Then map the crawled property for the field with the id: 1d22ea11-1e32-424e-89ab-9fedbadb6ce1 to the managed property ArticleID.

Then you can search for ArticleID:123 in the searchcenter or with a search webpart and get the item.

Licenciado bajo: CC-BY-SA con atribución
scroll top