質問

IM SharePoint 2013コミュニティサイトで動作している、IMは、ディスカッションをフィルタリングし、ディスカッションのタイトルをハイパーリンクとして表示するカスタムWebPartを開発します。 カスタムWebPart で避接されているハイパーリンクに設定するためのディスカッションのURLを見つけることができますか

役に立ちましたか?

解決

Hi I found out the answer for this question. All the urls of the discussions are stored in the discussions list but we can access only through the code we cannot display that column in any views. I'll share my code below

foreach (SPListItem post in oSpListItemClnPost)
{
    String postUrl = post["URL Path"].ToString();

    String url = oSpSite.Url;
    url += "/SitePages/Topic.aspx?RootFolder=" + postUrl;
}

So string url will be the final url of the discussions in the discussions list.

Thank You

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