@model Winsoft.GOV.XF.WX.Models.AddPhoneNumberViewModel @{ ViewBag.Title = "电话号码"; }

@ViewBag.Title。

@using (Html.BeginForm("AddPhoneNumber", "Manage", FormMethod.Post, new { @class = "form-horizontal", role = "form" })) { @Html.AntiForgeryToken()

添加电话号码


@Html.ValidationSummary("", new { @class = "text-danger" })
@Html.LabelFor(m => m.Number, new { @class = "col-md-2 control-label" })
@Html.TextBoxFor(m => m.Number, new { @class = "form-control" })
} @section Scripts { @Scripts.Render("~/bundles/jqueryval") }