@model WX.CRM.Model.Entity.GJS_TRADERUSER @using WX.CRM.WebHelper @{ ViewBag.Title = "编辑"; Layout = "~/Views/Shared/_Index_LayoutEdit.cshtml"; }
@Html.ToolButtonPlain("btnSave", "icon-save", "保存", false, "")
@using (Html.BeginForm("Edit", "TraderUser", null, FormMethod.Post, new { Id = "CreateForm" })) { @Html.ValidationSummary(true)
@Html.HiddenFor(m=>m.PKID) @Html.HiddenFor(m => m.TRADECODE) @Html.HiddenFor(m => m.CTIME) @Html.Hidden("hid_option", Request.QueryString["type"]) 用户名 @*@Html.RadioButtonListFor(m => m.USERNAME, (IEnumerable)ViewBag.UserNameList, System.Web.UI.WebControls.RepeatDirection.Vertical, 30)*@ @Html.DropDownListFor(m => m.USERNAME, (IEnumerable)ViewBag.UserNameList, new { style = "width:305px" })
}