@using WX.CRM.WebHelper; @using WX.CRM.Model @using WX.CRM.WEB.Handler @model WX.CRM.Model.MAP.Wx_FengHao @{ ViewBag.Title = "创建bas_agent"; Layout = "~/Views/Shared/_Index_LayoutEdit.cshtml"; } @section scripts{ }
@Html.ToolButtonPlain("btnSave", "icon-save", "保存", false, "")
@using (Html.BeginForm("Edit", "company", null, FormMethod.Post, new { Id = "CreateForm" })) { @Html.ValidationSummary(true)
@Html.LabelFor(m => m.alias) @Html.TextBoxFor(m => m.alias) @Html.ValidationMessageFor(m => m.alias)
@Html.LabelFor(m => m.isfenghao) @Html.RadioButtonFor(m => m.isfenghao, 1, new { id = "isfenghao1", name = "isfenghao" }) @Html.RadioButtonFor(m => m.isfenghao, 0, new { id = "isfenghao2", name = "isfenghao" }) @Html.ValidationMessageFor(m => m.isfenghao)
}