在 CRM Dynamics 4.0 SiteMap 文件中添加特殊字符(html 编码)

发布于 2024-07-23 08:11:34 字数 1147 浏览 8 评论 0原文

我想知道是否可以将特殊字符添加到 CRM (4.0) SiteMap 实体(SiteMap XML 文件)中。 我的意思是,当我们修改位于左侧的菜单时,我想要一些 HTML 编码字符。 例如 ® 或其他一些特殊字符。

我尝试执行以下操作:

<Area Id="MyArea" Icon="/_imgs/resourcecenter_24x24.gif">
    <Titles>
        <Title LCID="1033" Title="Title english &amp;reg;"/>
        <Title LCID="1036" Title="Title french &amp;reg;"/>
    </Titles> 
    <Descriptions>
        <Description LCID="1033" Description="Description EN &amp;reg;"/>
        <Description LCID="1036" Description="Description FR &amp;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 &reg;” 在我的左侧菜单区域而不是“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 &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>

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

Bonjour°[大白 2024-07-30 08:11:34

编辑:我最初的回答是不正确的。 使用编号的 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 characters reg; because that isn't an HTML escape code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文