内容查询 Web 部件呈现 HTML 源
我们使用内容查询 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对我来说,我必须做相反的事情,并启用输出转义。
For me I had to do the reverse, and enable output escaping.
您必须自定义 ItemStyle.xsl 文件(即:通过创建副本并添加您自己的样式)来打印内容 - 并指定
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:
Here's how to customise the ItemStyle: http://www.heathersolomon.com/blog/articles/CustomItemStyle.aspx