如何在SharePoint中将链接链接到其中包含“&”符号的网站?
我的目标是让SharePoint使用插入到字段中的ID来链接到TFS项目通过TFS的Web界面。
答案 0 :(得分:0)
我试图让我的SharePoint任务列表指向TFS。 TFS URL使用以下格式:
http://tfs.domain/tfs/site/Project/_workItems/index#_a=edit&id=13129
所以,很自然地,你认为你可以将{@ TFS_x0020_Item_x0020_Number}追加到最后。
<a href="http://tfs.domain/tfs/site/Project/_workItems/index#_a=edit&id={@TFS_x0020_Item_x0020_Number}" target="_blank">
可悲的是,事情并非如此。
相反,我不得不使用&amp; amp; amp;获得所需的输出。我的完整代码看起来像这样:<a href="http://tfs.domain/tfs/site/Project/_workItems/index#_a=edit&id={@TFS_x0020_Item_x0020_Number}" target="_blank">
<xsl:value-of select="@TFS_x0020_Item_x0020_Number"/> - Click to View
</a>
最后,我成功地从Sharepoint链接到TFS。
我怀疑此解决方案可用于链接到包含&符号(&amp;)和其他特殊字符的其他网站。