Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道我们是否可以根据 URI 检索 SDL Tridion 页面的已发布 URL?理想情况下,我想使用核心服务来做到这一点。
如果您正在谈论检索页面的已发布 URL,可以通过以下方式完成:
PageData page = client.Read("tcm:12-345-64", null) as PageData; PublishLocationInfo info = (PublishLocationInfo)page.LocationInfo; string url = info.PublishLocationUrl;