我正在尝试获取完全合格的网址,这是代码
string path = string.Format("/sitecore/shell/Applications/Content%20Manager/default.aspx?id={0}&la={1}&fo={0}", contentItem.ID, contentItem.Language);
string fullPath = Sitecore.Web.WebUtil.GetFullUrl(path);
text = text.Replace("$itemUrl$", fullPath);
这会返回类似http://cp.localsite/sitecore/shell/Applications/Content%20Manager/default.aspx?id= {DC6B4AE0-929D-4F19-97F4-825796A30781}&la=en&fo={DC6B4AE0-929D-4F19 -97F4-825796A30781} 这就像一个链接,直到 ?id= 从 id 生成,它看起来像一个普通的文本。我该如何解决这个问题。我想要内容的可点击网址。我真的很感激任何帮助。
谢谢。