views:

45

answers:

1

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.

A: 

It turned out that I overlooked the htmlhelper syntax. I used <%= %> instead of <%: %>

Fleents