在 CRM Dynamics 4.0 SiteMap 文件中添加特殊字符(html 编码)
我想知道是否可以将特殊字符添加到 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>
这实际上显示“Title English ®” 在我的左侧菜单区域而不是“Title English®”。
有没有人有办法解决吗?
(注:我已经尝试直接使用“alt-0174”来放置角色,但没有成功。)
I would like to know if this is possible to add special character into the CRM (4.0) SiteMap entity (SiteMap XML files). I mean when we modify the menu located on the left I would like to have some HTML encoded character. By example ® or some other special characters.
I tried to do the following:
<Area Id="MyArea" Icon="/_imgs/resourcecenter_24x24.gif">
<Titles>
<Title LCID="1033" Title="Title english ®"/>
<Title LCID="1036" Title="Title french ®"/>
</Titles>
<Descriptions>
<Description LCID="1033" Description="Description EN ®"/>
<Description LCID="1036" Description="Description FR ®"/>
</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>
This actually show "Title English ®" in my left menu area instead of "Title English ®".
Does anyone have a solution?
(Note: I already tried to put the character directly with "alt-0174" but it didn't worked.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编辑:我最初的回答是不正确的。 使用编号的 HTML 转义符(在本例中为
®
)将这些字符放入站点地图中。只需输入
®
而不是您拥有的内容。&
正在被转义,然后它只输出字符reg;
因为这不是 HTML 转义代码。EDIT: My initial response was incorrect. Use the numbered HTML escape (in this case
®
) to get those characters into the sitemap.Just put
®
instead of what you have. The&
is being escaped and then it just outputs the charactersreg;
because that isn't an HTML escape code.