5

我的模型:

    public class htmlDump {
        public string html { get; set; }
    }

    public string getSquares() {
        var sq = (from s in n.squares
                  where s.active == true
                 orderby s.date_created descending
                 select s.html).First();
        return sq;
    }

我的控制器:

    public ActionResult index() {
        intranetGS.htmlDump sq = new intranetGS.htmlDump {
            html = g.getSquares()
        };

        return View(sq);
    }

我的观点:

 @Html.DisplayFor(model => model.html)

我想要的只是将传递给视图的 html 呈现为 html 而不是文本。当然,我可以在视图中使用一些不同的东西(而不是 .DisplayFor)。有什么建议么?

非常感谢!

4

1 回答 1

10
@Html.Raw(Model.html)

注意:如果用户可以输入此数据- 请确保已对其进行消毒。

于 2013-10-11T14:20:33.777 回答