如何在asp mvc中使用textarea中的多行保存文本

时间:2016-07-30 16:33:39

标签: c# asp.net-mvc

这是我用来输入多行文章的视图 我希望你也可以告诉我如何保存文本属性,比如粗体斜体,因为它让我很困惑。

@model WEBSITI.Models.article

@{
    ViewBag.Title = "Create";
}

<h2>Create</h2>


@using (Html.BeginForm( "Create", null, FormMethod.Post, new { enctype = "multipart/form-data" }))
{

        <div class="form-group">
            @Html.LabelFor(model => model.bodyofarticle, htmlAttributes: new { @class = "control-label col-md-2" })
            <div class="col-md-10">
                @Html.EditorFor(model => model.bodyofarticle, new { htmlAttributes = new { @class = "form-control" } })
                @Html.ValidationMessageFor(model => model.bodyofarticle, "", new { @class = "text-danger" })
            </div>
            <input type="file" id="file" name="file" />
        </div>

        <div class="form-group">
            <div class="col-md-offset-2 col-md-10">
                <input type="submit" value="Create" class="btn btn-default" />
            </div>
        </div>
    </div>
 }

1 个答案:

答案 0 :(得分:0)

当提交表单时,asp.met mvc框架将检查请求正文以查看它是否具有HTML标记的任何潜在危险内容( 考虑脚本注入 )。如果它检测到任何危险内容,请求验证模块将抛出错误。这是设计

要明确允许在属性值中使用Html标记发布表单,您可以使用AllowHtml属性

修饰您的特定属性
public partial class article
{
    [AllowHtml]       
    public string bodyofarticle { set; get; }

    //other properties here
}

这将告诉框架从上述请求验证中排除此属性。

我建议您在编写C#代码时关注PascalCasing(例如:Article而不是article