@model CP.Model.Area @{ Layout = null; Page.Title = "新增 编辑地区"; }
@Html.Raw(Page.Title)
@using (Html.BeginForm("Edit", "Area", FormMethod.Post, new { @id = "signupForm", @class = "form-horizontal" })) { @Html.AntiForgeryToken() @Html.ValidationSummary(true) @Html.HiddenFor(m => m.areaid)
@Html.LabelFor(m => m.name, new { @class = "col-sm-2 control-label" })
@Html.TextBoxFor(m => m.name, new { @class = "form-control" }) @Html.ValidationMessageFor(m => m.name)
@Html.LabelFor(m => m.title, new { @class = "col-sm-2 control-label" })
@Html.TextBoxFor(m => m.title, new { @class = "form-control" }) @Html.ValidationMessageFor(m => m.title)
@Html.LabelFor(m => m.descriptions, new { @class = "col-sm-2 control-label" })
@Html.TextBoxFor(m => m.descriptions, new { @class = "form-control" }) @Html.ValidationMessageFor(m => m.descriptions)
@Html.LabelFor(m => m.keywords, new { @class = "col-sm-2 control-label" })
@Html.TextBoxFor(m => m.keywords, new { @class = "form-control" }) @Html.ValidationMessageFor(m => m.keywords)
@Html.LabelFor(m => m.seq, new { @class = "col-sm-2 control-label" })
@Html.TextBoxFor(m => m.seq, new { @class = "form-control" }) @Html.ValidationMessageFor(m => m.seq)
返回列表
}