在項目中,我遇到了一個問題 我的產品桌子和供應商創造一個產品時,因此提供的產品的表我需要選擇從一個特定的供應商數據的基礎上我已經試過到目前爲止的代碼只是選擇供應商的ID可能不存在HTML創建一個下拉列表,從數據庫的LINQ MVC
<div class="editor-label">
@Html.LabelFor(model => model.Name)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Name)
@Html.ValidationMessageFor(model => model.Name)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.SupplierId)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.SupplierId)
@Html.ValidationMessageFor(model => model.SupplierId)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.Category)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Category)
@Html.ValidationMessageFor(model => model.Category)
</div>
您需要使用'@ Html.DropDownListFor()' –
你需要使用谷歌的一點點,以及 - http://tinyurl.com/pxrc4fb。這裏有很多資源將教你如何在ASP.Net MVC中填充數據庫中的下拉菜單。 – ramiramilu