随笔分类 -  ASP.NET

摘要://枚举public enum Status{ Open=1, Cancel=2, Close=3}//需引用System.Reflection库using System.Reflection;//页面初始化时绑定DropDownListprotected void Page_Load(object sender, EventArgs e){ foreach (FieldInfo field in typeof(Status).GetFields()) { if (!field.IsSpecial... 阅读全文
posted @ 2014-03-07 14:43 TJM 阅读(117) 评论(0) 推荐(0)