内容查询 Web 部件呈现 HTML 源

发布于 2024-10-23 21:51:07 字数 97 浏览 4 评论 0原文

我们使用内容查询 Web 部件来查询特定的可重用 HTML 内容项并将其显示在页面布局中(因此它存在于每个页面上),但它显示为 HTML 源,而不是呈现的 HTML。有什么想法吗?

We are using a Content Query web part to query for a specific reusable HTML content item and display it in a page layout (so it exists on every page) but it is appearing as HTML source, not rendered HTML. Any idea?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

南薇 2024-10-30 21:51:07

对我来说,我必须做相反的事情,并启用输出转义。

<xsl:value-of select="@Value" disable-output-escaping="yes" />

For me I had to do the reverse, and enable output escaping.

<xsl:value-of select="@Value" disable-output-escaping="yes" />
沩ん囻菔务 2024-10-30 21:51:07

您必须自定义 ItemStyle.xsl 文件(即:通过创建副本并添加您自己的样式)来打印内容 - 并指定 disable-output-escaping="no"

像这样:

 <xsl:value-of select="@Value" disable-output-escaping="no" />

以下是如何自定义 ItemStyle: http://www.heathersolomon.com/blog /articles/CustomItemStyle.aspx

You'll have to customise the ItemStyle.xsl file (ie: by creating a copy and adding your own style) which prints out the content - and specify disable-output-escaping="no".

Like this:

 <xsl:value-of select="@Value" disable-output-escaping="no" />

Here's how to customise the ItemStyle: http://www.heathersolomon.com/blog/articles/CustomItemStyle.aspx

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