@using WX.CRM.WebHelper; @using System.Web.UI.WebControls; @model WX.CRM.WEB.ViewModel.Level2.HtModel @{ ViewBag.Title = "SetIsCanKicked"; Layout = "~/Views/Shared/_Index_LayoutEdit.cshtml"; }
@Html.ToolButtonPlain("btnSave", "icon-save", "保存", false, "")
@using (Html.BeginForm("SetIsCanKicked", "L2UserKicked", null, FormMethod.Post, new { Id = "CreateForm" })) {
@Html.LabelFor(model => model.userName) @Html.TextBoxFor(model => model.userName) @Html.ValidationMessageFor(m => m.userName)
@Html.LabelFor(model => model.u) @Html.RadioButtonListFor(c => c.u, ViewBag.DisInfo as IEnumerable, Model.u.ToString())
}