实例介绍asp.net项目开发中枚举的使用
程序员文章站
2022-04-26 18:10:46
...
这篇文章主要介绍介绍asp.net项目开发中枚举的使用。包含了显示枚举的值和为下拉框绑定枚举两个功能举例说明。
1 显示枚举的值:<%# (CN80s.DDPM.Model.Enum.EnumBidCardStatus)(int)Eval("PerpaidCard_Status")%>
2 为下拉框绑定枚举:
GetEnumList(ddlBids); void GetEnumList(DropDownList ddl) { foreach (EnumBidCardType s in System.Enum.GetValues(typeof(EnumBidCardType))) { ddl.Items.Add(new ListItem(s.ToString(), ((int)s).ToString())); } } this.ddlBids.DataSource = GetEnumList(typeof(EnumBidCardType), true); this.ddlBids.DataTextField = "Text"; this.ddlBids.DataValueField = "Value"; this.ddlBids.DataBind(); public static List<ListItem> GetEnumList(Type enumType, bool allAllOption) { if (enumType.IsEnum == false) { return null; } List<ListItem> list = new List<ListItem>(); if (allAllOption == true) { list.Add(new ListItem("--全部--", "")); } Type typeDescription = typeof(DescriptionAttribute); System.Reflection.FieldInfo[] fields = enumType.GetFields(); string strText = string.Empty; string strValue = string.Empty; foreach (FieldInfo field in fields) { if (field.IsSpecialName) continue; strValue = field.GetRawConstantValue().ToString(); object[] arr = field.GetCustomAttributes(typeDescription, true); if (arr.Length > 0) { strText = (arr[0] as DescriptionAttribute).Description; } else { strText = field.Name; } list.Add(new ListItem(strText, strValue)); } return list; }
以上就是实例介绍asp.net项目开发中枚举的使用的详细内容,更多请关注其它相关文章!
推荐阅读
-
EL表达式及其11个使用对象(及jsp中的对象)实例介绍
-
iOS的UI开发中Modal的使用与主流应用UI结构介绍
-
THINKPHP项目开发中的日志记录实例分析
-
Python中SOAP项目的介绍及其在web开发中的应用
-
使用HTTP-REPL工具测试ASP.NET Core 2.2中的WEB API项目
-
使用Asp.Net Core MVC 开发项目实践[第四篇:基于EF Core的扩展2]
-
MongoDB中的bson介绍和使用实例
-
使用Asp.Net Core MVC 开发项目实践[第五篇:缓存的使用]
-
Android开发中简单的launcher概念及使用方法介绍
-
使用手动配置的方式开发第一个Struts项目的步骤以及实例