ASP.NET MVC2 Dynamic HTML
I have a discussion forum/blog engine working with web forms. Each post contains html entered within an editor that is stored as an nvarchar in SQL server. When I display this in a view, lik开发者_开发问答e so:
<%#Eval("body")%>
The eval function escapes the html, so I gt <, >, yada yada yada. Anyone know a good way around this?
Not sure it can help, but HtmlDecode
is an option.
精彩评论