我想將第一個選項值設置爲0,而不是空白。我該如何設置? 即如何將元素的第一個選項值設置爲0而不是空選項值?
<select id="PatentId" name="ParentId">
<option value="0">--Select--</option>
<option value="1">Books</option>
// other options
</select>
我的代碼
<div class="editor-field">
@Html.DropDownList("ParentId","--Select--")
@Html.ValidationMessageFor(model => model.ParentId)
</div>
怎麼樣添加[0, 「請選擇 - 」]在'Model.Parents'? – Mohayemin 2012-07-26 08:24:52
@Mohayemin,這確實是實現這一目標的醜惡方式之一。即使它能達到預期效果,我也不會這樣做。 – 2012-07-26 09:02:16
這不適合我。因爲我在同一個表中沒有Child - > Parent關係。另外我試過'公衆詮釋? ParentId {get;組; }'但沒有工作 – 2012-07-26 09:10:41