how GetLocalResourceObject output an HTML string?
I stored some html contents 开发者_JAVA百科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.
It turned out that I overlooked the htmlhelper syntax. I used <%= %> instead of <%: %>
精彩评论