Domanda

Sto usando SharePoint 2013 e ho impostato una piccola base di conoscenze. Sto visualizzando l'ID nascosto della pagina Wiki Enterprise sulla pagina utilizzando questo codice:

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

Ora il mio obiettivo è quello di cercare su questo ID articolo e trovarlo immediatamente.È possibile?

È stato utile?

Soluzione

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.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a sharepoint.stackexchange
scroll top