| 이름 |
@Html.TextBoxFor(x => x.User.username, new { @class = "apylpt", @maxlength = "10", @style = "background-color:#ddd;", @readonly = true }) |
| 주민등록번호 |
- @Html.TextBoxFor(x => x.User.userpno1, new { @maxlength = "6", @readonly = "readonly", @style = "background-color:#ddd;" })
- -
- @Html.TextBoxFor(x => x.User.userpno2, new { @maxlength = "7", @readonly = "readonly", @style = "background-color:#ddd;" })
|
| 휴대전화 |
- @Html.TextBoxFor(x => x.User.mobile1, new { @maxlength = "3", @readonly = "readonly", @style = "background-color:#ddd;" })
- -
- @Html.TextBoxFor(x => x.User.mobile2, new { @maxlength = "4", @readonly = "readonly", @style = "background-color:#ddd;" })
- -
- @Html.TextBoxFor(x => x.User.mobile3, new { @maxlength = "4", @readonly = "readonly", @style = "background-color:#ddd;" })
|
| 이메일 |
- @Html.TextBoxFor(x => x.User.email1, new { @maxlength = "100" })
- @
- @Html.TextBoxFor(x => x.User.email2, new { @maxlength = "30" })
|
| 주소 |
-
@Html.TextBoxFor(x => x.User.post, new { @class = "postno", @style = "background-color:#ddd;", @readonly = true })
-
@Html.TextBoxFor(x => x.User.address1, new { @class = "postadr", @style = "background-color:#ddd;", @readonly = true, @placeholder = "주소입력" })
-
@Html.TextBoxFor(x => x.User.address2, new { @class = "postadrsub", @placeholder = "나머지 주소입력", @maxlength = "200" })
-
우편번호검색
|
| 채용형태 |
-
@Html.RadioButtonFor(model => model.User.isassignuser, "1", new { @name = "recruit", @checked = "checked" })정규직
-
@Html.RadioButtonFor(model => model.User.isassignuser, "0", new { @name = "recruit" })비정규직
|
| 직위 |
@Html.TextBoxFor(x => x.User.uduty, new { @class = "apylpt", @maxlength = "20" })
|
| 학력 |
-
@Html.RadioButtonFor(model => model.User.slevel, "0", new { @name = "eduGrade", @checked = "checked" })기타
-
@Html.RadioButtonFor(model => model.User.slevel, "1", new { @name = "eduGrade" })고졸
-
@Html.RadioButtonFor(model => model.User.slevel, "2", new { @name = "eduGrade" })학사
-
@Html.RadioButtonFor(model => model.User.slevel, "3", new { @name = "eduGrade" })석사
-
@Html.RadioButtonFor(model => model.User.slevel, "4", new { @name = "eduGrade" })박사
|