public enum ItemTypes
{
Movie = 1,
Game = 2,
Book = 3
}
在MVC2.0中如何將以上枚舉類型使用到DropDownList中,其實(shí)很簡單,以下兩步就可以做到。
1. 在Controller對像中加入以下代碼:
public static SelectList ToSelectList<ItemTypes>(this ItemTypes enumObj)
{
var values = from ItemTypes e in Enum.GetValues(typeof(ItemTypes))
select new { ID = e, Name = e.ToString() };
return new SelectList(values, "Id", "Name", enumObj);
}
或者
Dinners dinner = dinnerRepository.GetDinner(id);
ViewData["Countries"] = new SelectList(Enum.GetNames(typeof(ItemTypes)), dinner.Country);
2. 在View中加入:
<%= Html.DropDownList("Country", ViewData["Countries"] as SelectList)%>
網(wǎng)站題目:MVC中將枚舉類型數(shù)據(jù)應(yīng)用到下拉列表中的方法-創(chuàng)新互聯(lián)
本文鏈接:http://jinyejixie.com/article4/dipcoe.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供App設(shè)計(jì)、虛擬主機(jī)、外貿(mào)網(wǎng)站建設(shè)、動態(tài)網(wǎng)站、自適應(yīng)網(wǎng)站、手機(jī)網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容