2016年10月20日 星期四

ASP MVC 下拉選單處理

下拉選單處理
建立資料存取

Control部分
查詢DB 部分另外於 EF中 撰寫 EFGroup.ListGroup() 回傳上述資料




View 部分的資料



<div class="form-group">
@Html.LabelFor(model => model.GroupNo, "GroupNo", htmlAttributes: new { @class = "control-label col-md-2" })
  <div class="col-md-10">
  @*-- 設定加入 請選擇 --*@
  @Html.DropDownListFor(model => model.GroupNo, ViewBag.GroupNO as SelectList, "-- select a value --", htmlAttributes: new { @class = "form-control" })

  @*-- 自動產生設定 --*@
  @*-- @Html.DropDownList("GroupNO", null, htmlAttributes: new { @class = "form-control" })--*@

@Html.ValidationMessageFor(model => model.GroupNo, "", new { @class = "text-danger" })
  </div>
</div>

沒有留言:

張貼留言