@model NP.Model.VMMM @{ Layout = "~/Views/Shared/_PopupLayout.cshtml"; }
인적사항
@Html.TextBoxFor(m => m.User.UserId, new { @class = "form-control disp-init " + (Model.LongVal > 0 ? "" : "ff"), @style = "width: 250px;", @maxlength = "15" }) (3~15자)
@Html.Password("User.UserPass", "", new { @class = "form-control disp-init", @style = "width: 250px;", @maxlength = "20" })
@Html.Password("User.UserPass2", "", new { @class = "form-control disp-init", @style = "width: 250px;", @maxlength = "20" })
@Html.TextBoxFor(m => m.User.UserNameReal, new { @class = "form-control disp-init", @style = "width: 250px;", @maxlength = "25" })
@Html.Partial("./Partial/Select", Model.ComCodes.Where(w => w.CGroup == "Position"), new ViewDataDictionary { { "special", "reg" }, { "name", "User.Position" }, { "selected", Model.User.Position }, { "df", ":-선택" }, { "style", "width: 250px;" } })
@Html.TextBoxFor(m => m.User.Email, new { @class = "form-control disp-init", @style = "width: 250px;", @maxlength = "50" })
@Html.TextBoxFor(m => m.User.Mobile, new { @class = "form-control disp-init", @style = "width: 250px;", @maxlength = "13" })
@Html.TextBoxFor(m => m.User.TelNo, new { @class = "form-control disp-init", @style = "width: 250px;", @maxlength = "13" })
@Html.Partial("./Partial/Date", Model.LongVal < 1 ? (DateTime?)null : Model.User.BirthDay, new ViewDataDictionary { { "name", "User.BirthDay" } })
@Html.TextAreaFor(m => m.User.Info, new { @class = "form-control", @style = "resize: none; width: 90%; height: 80px; padding: 3px 5px;" })
@Html.Partial("./Partial/File", Model.FileList, new ViewDataDictionary { { "name", "User.FGNoProfile" },{"value", Model.User.FGNoProfile },{ "fname", "fileprofile"}, {"width", null },{"folder", "Order" },{"filecount", 1 },{"readmode", 0 },{"hidemode", 0 },{ "isimage", 1 },{ "imageid", "imgprofile" },{ "dftsrc", "" },{ "fileext", "" } }) 회원사진
@Html.Partial("./Partial/File", Model.FileList2, new ViewDataDictionary { { "name", "User.FGNoCCV" },{"value", Model.User.FGNoCCV },{ "fname", "fileccv"}, {"width", null },{"folder", "Order" },{"filecount", 5 },{"readmode", 0 },{"hidemode", 0 },{ "isimage", 0 },{ "imageid", "" },{ "dftsrc", "" },{ "fileext", "" }})
@Html.Partial("./Partial/Date", Model.User.EnterDate, new ViewDataDictionary { { "name", "User.EnterDate" } }) ~ @Html.Partial("./Partial/Date", Model.User.RetireDate, new ViewDataDictionary { { "name", "User.RetireDate" } }) (퇴사일을 입력하면 로그인이 차단됩니다.)
관리
@Html.HiddenFor(m => m.User.UserType, new { @data_default = "", data_bind = "UserType" }) @Html.Partial("./Partial/Radio", null, new ViewDataDictionary() { { "valuetext", "31: 컨설턴트;34:통합관리자;32:DB담당;33:회계담당;35:HiREBEST" }, { "checked", Model.User.UserType }, { "name", "UserType" }, { "changeid", "User_UserType" } })
@Html.Partial("./Partial/Select", "", new ViewDataDictionary { { "valuetext", "0:YNP;1:HireBest;2:SNP" }, { "name", "User.ConsultantCompany" }, { "selected", Model.User.UserNo < 1 ? "" : Model.User.ConsultantCompany.ToString() }, { "df", ":-소속선택" }, { "style", "width: 250px;" } }) @Html.Partial("./Partial/Select", "", new ViewDataDictionary { { "valuetext", "1:CEO;8:Industry & Life Sciences;6:Financial Services;4:Consumer & Retail;3:IT;9:Global;7:HR Services;11:Hire Best" }, { "name", "User.ConsultantTeam" }, { "selected", Model.User.ConsultantTeam }, { "df", ":-팀선택" }, { "style", "width: 250px;" } })
@Html.HiddenFor(m => m.User.Status, new { @data_default = "", data_bind = "Status" }) @Html.Partial("./Partial/Radio", null, new ViewDataDictionary() { { "valuetext", "1:활성;0:비활성(잠금)" }, { "checked", Model.User.Status }, { "name", "Status" }, { "changeid", "User_Status" } })
@Html.HiddenFor(m => m.User.Security, new { @data_default = "", data_bind = "Security" }) @Html.Partial("./Partial/Radio", null, new ViewDataDictionary() { { "valuetext", "0:예;1:아니오" }, { "checked", Model.User.Security }, { "name", "Security" }, { "changeid", "User_Security" } })
@Html.HiddenFor(m => m.User.IsOpen, new { @data_default = "", data_bind = "IsOpen" }) @Html.Partial("./Partial/Radio", null, new ViewDataDictionary() { { "valuetext", "1:예;0:아니오" }, { "checked", Model.User.IsOpen }, { "name", "IsOpen" }, { "changeid", "User_IsOpen" } })
@Html.TextBoxFor(m => m.User.Etc, new { @class = "form-control", @maxlength = "110" })
 
저장 @if (Model.User.UserNo > 0) { @: 임시비번 발송 }  닫기
@Html.HiddenFor(m => m.LongVal) @Html.HiddenFor(m => m.User.AdminNo) @Html.HiddenFor(m => m.User.UserNo) @Html.HiddenFor(m => m.IsSavedForParent)
@section styles{ @Html.Partial("./Partial/Summernotestyle") } @section scriptsHeader { @Html.Partial("./Partial/ScriptDate") @Html.Partial("./Partial/FileScript") @Html.Partial("./Partial/Summernote") } @section scripts { }