我正在编写 MVC 5 视图,我想在选择列表旁边放置一个按钮。我当前的代码将按钮放在选择列表下。
这是我的代码:
<div class="form-group">
@Html.LabelFor(model => model.userName, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
@Html.DropDownListFor(m => m.userName, Model.userNames, htmlAttributes: new { @class = "form-control" })
<div class="col-md-offset-2 col-md-10">
<input type="submit" value="Select" class="btn btn-default" />
</div>
</div>
</div>
这是显示按钮位置的图像:
提前致谢。
更新
即使我有以下代码,该按钮也在选择列表下:
<p>
@Html.LabelFor(model => model.userName, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.DropDownListFor(m => m.userName, Model.userNames, htmlAttributes: new { @class = "form-control" }) <input type="submit" value="Select" class="btn btn-default" />
</p>