让MVC表单textarea接受HTML标记

时间:2015-06-08 13:55:21

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

我正在使用MVC 4 ASP.NET,我有以下Razor表单。

<div class="editor-field description input-block-level" 
     style="min-height:100px; height:100px;">
    @Html.TextAreaFor(model => model.Description, 
                      new { maxlength=400, @class = "span10", 
                            @style = "min-height:100px; height:100px;" , 
                            placeholder = "Description for the message" })
    @Html.ValidationMessageFor(model => model.Description, "*")
</div>

如何让表单接受HTML标记,特别是我希望表单接受hyperlinnks。例如&#39;在谷歌搜索,转到http://www.google.com&#39; ?

1 个答案:

答案 0 :(得分:1)

您需要关闭请求验证: https://msdn.microsoft.com/en-us/library/hh882339%28v=vs.110%29.aspx?f=255&MSPPError=-2147217396

请仅针对特定属性或特定操作执行此操作。