Question

J'utilise SharePoint 2013 et j'ai mis en place une petite base de connaissances. J'affiche l'identifiant caché de la page Enterprise Wiki de la page en utilisant ce code:

<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"/>

Maintenant, mon objectif est de rechercher sur cet article d'article et de le trouver immédiatement.Est-ce possible?

Était-ce utile?

La solution

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.

Licencié sous: CC-BY-SA avec attribution
Non affilié à sharepoint.stackexchange
scroll top