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

@ViewBag.Title。

@using (Html.BeginForm("VerifyPhoneNumber", "Manage", FormMethod.Post, new { @class = "form-horizontal", role = "form" })) { @Html.AntiForgeryToken() @Html.Hidden("phoneNumber", @Model.PhoneNumber)

输入验证代码

@ViewBag.Status

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