This commit is contained in:
hyunho 2020-10-19 05:47:44 +00:00
parent 1ee968d431
commit 00a7349755
1 changed files with 13 additions and 0 deletions

View File

@ -17,6 +17,19 @@
<col /> <col />
</colgroup> </colgroup>
<tbody> <tbody>
<tr style="display:none">
<th>회원번호</th>
<td>
@if (!Model.IsAdmin)
{
@Html.HiddenFor(m => m.Assign.ascode)@Model.Assign.ascode
}
else
{
@Html.TextBoxFor(m => m.Assign.ascode, new { @class = "form-control int nocomma text-center" })
}
</td>
</tr>
<tr> <tr>
<th>법인명</th> <th>법인명</th>
<td>@Html.TextBoxFor(m => m.Assign.asname, new { @class = "form-control", @maxlength = "100" })</td> <td>@Html.TextBoxFor(m => m.Assign.asname, new { @class = "form-control", @maxlength = "100" })</td>