GetLocalResourceObject 如何输出 HTML 字符串?
我将一些html内容存储在本地资源文件中。 所以它里面有html标签,比如p、br、div等。 我使用了 GetLocalResourceObject("myContent") 在页面上显示内容, 但页面不会将其呈现为 HTML。
I stored some html contents in a local resource file.
So it has html tags in it such as p, br, div, etc.
I used GetLocalResourceObject("myContent")
to display the content on the page,
but the page doesnt render it as HTML.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
原来我忽略了htmlhelper语法。
我用了<%= %>而不是 <%: %>
It turned out that I overlooked the htmlhelper syntax.
I used <%= %> instead of <%: %>