Create link to Sitecore Item

前端 未结 6 1878
Happy的楠姐
Happy的楠姐 2021-02-07 00:42

I know I have done this before but I can\'t seem to remember where or how.

I want to create a link to an Item in Sitecore. This code:

Sitecore.Data.Items         


        
6条回答
  •  孤城傲影
    2021-02-07 01:14

    You can do by this also:

    Item.Paths.FullPath
    

    It is same as:

    Sitecore.Links.LinkManager.GetItemUrl(item);
    

提交回复
热议问题