-2
IEnumerableモデルをDropDownListForおよびDropDownListにバインドする方法 @model IEnumerable @ Html.DropDownListFor();Ianumerable型のモデルを使用したASP.NET MVC DropDownListFor <model>
IEnumerableモデルをDropDownListForおよびDropDownListにバインドする方法 @model IEnumerable @ Html.DropDownListFor();Ianumerable型のモデルを使用したASP.NET MVC DropDownListFor <model>
View
@Html.DropDownListFor(x => x.doc_typeid, Model.doctype_name, "--Select--", new { @class = "form-control", @style="width:auto;" })
Controller
var docTypes = from c in db.tm_doc_type select c;
doctype_name = new SelectList(docTypes, "doc_typeid", "doctype_name"),
は、コレクションのプロパティと選択した値を保持するプロパティを持つビューモデルを持ちます。 [Here](http://stackoverflow.com/questions/39550804/what-is-the-best-ways-to-bind-html-dropdownlistfor-in-asp-net-mvc5)は、いくつかのサンプルコード – Shyju
ですどのように私は得ることができる – SamSanju
私は前のコメントに投稿されたリンクを参照してください。 – Shyju