Is it possible to display raw Html from database in ASP.NET MVC 3?
问题 I have a table in my db where one of the properties is an Html page (without the html, head and body tags), and I intend to put it in the middle of one of my views - say, I call a cotroller method that takes an argument, and return a view passing this html big string as the model. I searched for it (not much, I admit), and found the following method: <%= System.Web.HttpUtility.HtmlDecode(yourEncodedHtmlFromYouDatabase) %> That was found here in stackoverflow. When I tried a similar razor