CRM(4.0)SiteMapエンティティ(SiteMap XMLファイル)に特殊文字を追加できるかどうか知りたいのですが。つまり、左側にあるメニューを変更するときに、HTMLでエンコードされた文字が必要です。例®またはその他の特殊文字。
私は次のことをしようとしました:
<Area Id="MyArea" Icon="/_imgs/resourcecenter_24x24.gif">
<Titles>
<Title LCID="1033" Title="Title english &reg;"/>
<Title LCID="1036" Title="Title french &reg;"/>
</Titles>
<Descriptions>
<Description LCID="1033" Description="Description EN &reg;"/>
<Description LCID="1036" Description="Description FR &reg;"/>
</Descriptions>
<Group Id="MyArea_Group">
<SubArea Id="mySubArea"
Url="https://toMyWebSite/Page.aspx" AvailableOffline="false" >
<Titles>
<Title LCID="1033" Title="My Item"/>
<Title LCID="1036" Title="My Item French"/>
</Titles>
</SubArea>
</Group>
</Area>
これは実際には「タイトル英語&reg;」を示しています 「TitleEnglish®」の代わりに私の左側のメニュー領域にあります。
誰かが解決策を持っていますか?
(注:「alt-0174」を使用して文字を直接配置しようとしましたが、機能しませんでした。)