asp.net mvc 将Enum绑定在DropDownList了
2020-11-18 01:02
标签:blog class tar ext width get int string 文件 html cti 假设我们有一个enum: 我们想要实现如此效果: 因为enum本身并没有IEnumerable接口,所以不能直接使用new SelectList(Role);来将之填充DropDownList。 但是我们可以写一个静态方法将之转为IEnumerable。 View文件中我们加入以下helper: 然后我们在Controller的action中写如下绑定即可 这样我们就可以实现将Enum绑定在DropDownList了 asp.net mvc 将Enum绑定在DropDownList了,搜素材,soscw.com asp.net mvc 将Enum绑定在DropDownList了 标签:blog class tar ext width get int string 文件 html cti 原文地址:http://www.cnblogs.com/sanfen/p/3700843.htmlpublic enum Role{ User = 0, Admin = 1024 }
public class EnumExt{ static public List
public ActionResult Index()
{
ViewData["enumlist"] = new SelectList(EnumExt.ToListItem
return View();
}
文章标题:asp.net mvc 将Enum绑定在DropDownList了
文章链接:http://soscw.com/index.php/essay/21761.html