0
면도기 코드에서이 레이아웃을 만듭니다.면도칼 정의
하지만이 위치을 좋아하지 않는다. 나는이 같은 것을 할 것이다.
어떻게 위의 이미지 같은 것을 만들 수 있습니까?
이것은 내 면도기 코드입니다.
<div class="form-group">
@Html.LabelFor(model => model.Name, new { @class = "control-label col-md-2" })
<div class="col-md-4">
@using (DAEF.DA_Mit daef = new DAEF.DA_Mit())
{
@Html.DropDownListFor(
model => model.CodMit,
new SelectList(daef.SelectAll(), "CodMit", "ItemPerDropdown"), new { @class = "form-control" })
}
@Html.ValidationMessageFor(model => model.CodMit, "", new { @class = "text-danger" })
</div>
@Html.LabelFor(model => model.CodCreator, new { @class = "control-label col-md-2" })
<div class="col-md-4">
@using (DAEF.DA_Mit daef = new DAEF.DA_Mit())
{
@Html.DropDownListFor(
model => model.CodCreator,
new SelectList(daef.SelectAll(), "CodMit", "ItemPerDropdown"), new { @class = "form-control" })
}
@Html.ValidationMessageFor(model => model.CodMit, "", new { @class = "text-danger" })
</div>
</div>
<div class="form-group">
@Html.LabelFor(model => model.Info, new { @class = "control-label col-sm-2" })
<div class="col-sm-4">
@Html.TextAreaFor(model => model.Info, new { @class = "form-control", rows = 4 })
@Html.ValidationMessageFor(model => model.Info, "", new { @class = "text-danger" })
</div>
</div>
</div>
저를 도울 수있는 사람이 있습니까? 마지막
<div class="col-sm-4">
이 답변 주셔서 감사합니다,하지만 넣은 사람은 아니다 일 ..! – Alan392