在HTML中将HTML字符串显示为呈现的页面

时间:2016-10-12 09:23:03

标签: html asp.net-mvc asp.net-mvc-4 textarea

在MVC4应用程序中,我有一个HTML字符串,我在Textarea中呈现字符串,它显示为简单的字符串。

MVC中是否有办法通过iframe或其他方式将HTML字符串呈现为实际页面?

1 个答案:

答案 0 :(得分:0)

我希望答案会对你有帮助。

您可以传递HTML字符串以通过模型查看。它将在textarea

中显示HTML字符串

<强>控制器

public ActionResult HTMLView()
{
    string result= "<HTML><BODY><DIV>Testing</DIV></BODY></HTML>";
    return View((object)result);
}

查看

@model string
    <div>
        @Html.TextArea("html", @Model, new { id="htmlTextArea" })
    </div>