質問

SharePoint 2013を使用して、小さな知識ベースを設定しました。 このコードを使用して、ページ上のエンタープライズWikiページの隠しIDを表示しています。

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

今私の目標はこの記事IDを検索してすぐに見つけることです。これは可能ですか?

役に立ちましたか?

解決

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.

ライセンス: CC-BY-SA帰属
所属していません sharepoint.stackexchange
scroll top