From 6fc6d67ce29eeebbd6e50ffe1722738d7b60fa18 Mon Sep 17 00:00:00 2001 From: lch Date: Fri, 25 Jun 2021 05:25:43 +0000 Subject: [PATCH] =?UTF-8?q?"=EC=A3=BC=EB=AF=BC=EB=93=B1=EB=A1=9D=EB=B2=88?= =?UTF-8?q?=ED=98=B8=20=EC=95=84=EB=9E=98=EC=97=90=20=EC=83=9D=EB=85=84?= =?UTF-8?q?=EC=9B=94=EC=9D=BC=20=EC=B9=B8=20=EC=B6=94=EA=B0=80=20(birth)?= =?UTF-8?q?=20=20-=20=EC=9E=85=EB=A0=A5/=EC=88=98=EC=A0=95=20=EB=B6=88?= =?UTF-8?q?=EA=B0=80=20=20-=20=EC=A3=BC=EB=AF=BC=EB=93=B1=EB=A1=9D?= =?UTF-8?q?=EB=B2=88=ED=98=B8=20=EC=95=9E=206=EC=9E=90=EB=A6=AC=20?= =?UTF-8?q?=EC=A0=95=EB=B3=B4=EB=A5=BC=20=EC=A0=80=EC=9E=A5=20=EB=B0=8F=20?= =?UTF-8?q?=EC=B6=9C=EB=A0=A5=20=20-=20=EC=A3=BC=EB=AF=BC=EB=93=B1?= =?UTF-8?q?=EB=A1=9D=EB=B2=88=ED=98=B8=20=EC=95=9E=206=EC=9E=90=EB=A6=AC?= =?UTF-8?q?=EA=B0=80=20=EB=82=A0=EC=A7=9C=20=EC=A0=95=EB=B3=B4=EC=99=80=20?= =?UTF-8?q?=EC=9D=BC=EC=B9=98=ED=95=98=EC=A7=80=20=EC=95=8A=EB=8B=A4?= =?UTF-8?q?=EB=A9=B4=20(=EC=98=88,=20123456)=20=EC=A0=80=EC=9E=A5=20?= =?UTF-8?q?=EB=B2=84=ED=8A=BC=20=ED=81=B4=EB=A6=AD=20=EC=8B=9C=20'?= =?UTF-8?q?=EC=A3=BC=EB=AF=BC=EB=93=B1=EB=A1=9D=EB=B2=88=ED=98=B8=EB=A5=BC?= =?UTF-8?q?=20=ED=99=95=EC=9D=B8=ED=95=B4=EC=A3=BC=EC=84=B8=EC=9A=94'=20al?= =?UTF-8?q?ert=20=EC=B6=9C=EB=A0=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 만일 주민등록번호 앞 6자리 정보를 가져오기 어렵다면 생년월일 입력/수정 칸 추가" --- BO/Views/user/ur.cshtml | 65 +++++++++++++++++++++++++++++++-- Base/Controller/ACommonCRoom.cs | 8 +--- 2 files changed, 63 insertions(+), 10 deletions(-) diff --git a/BO/Views/user/ur.cshtml b/BO/Views/user/ur.cshtml index 721ccb7..824e2f8 100644 --- a/BO/Views/user/ur.cshtml +++ b/BO/Views/user/ur.cshtml @@ -46,7 +46,7 @@ @if (Model.viewname == "user") {
- +
@Html.HiddenFor(m => m.User.userpno) @Html.TextBox("userpno1", (Model.User.userpno ?? "").Length > 5 ? Model.User.userpno.Substring(0, 6) : Model.User.userpno, new { @class = "form-control disp-init int nocomma text-center", @data_zero = "1", @style = "width: 143px;", @maxlength = "6" }) - @@ -80,8 +80,12 @@
@if (Model.viewname == "user") { - @Html.HiddenFor(w => w.User.birthday) - @*@Html.Partial("./Partial/Date", Model.User.birthday == null ? (DateTime?)null : Convert.ToDateTime(Model.User.birthday), new ViewDataDictionary { { "name", "User.birthday" } })*@ +
+ +
+ @Html.TextBoxFor(m => m.User.birthday, new { @readonly = "readonly", @style = "width: 300px; background-color: #ddd;", @class = "postno form-control disp-init" }) +
+
} @if (Model.viewname == "user") { @@ -392,6 +396,7 @@ } @section scripts{ +