有時候我們想展示展示乙個下拉列表,但又不想從資料庫呼叫。這時我們可以通過列舉值來實現。
構造方法
/// ///
描述 public enumhelper(string
description)
//////
構造方法
/// ///
作者 ///
描述 ///
相關的url
public enumhelper(string author, string description, string
url)
//////
描述作者
/// public
string
author
set }
//////
描述
/// public
string
description
set }
//////
相關的url
/// public
string
url
set }
//////
得到某乙個列舉項的remarkattribute
/// ///
列舉項 ///
remarkattribute物件
private
enumhelper getremarkattributefromenumitem(system.enum en)
//////
得到某乙個列舉項的remark描述
/// ///
列舉項 ///
remark的描述
private
string
getremarkstringfromenumitem(system.enum en)
//////
根據當前列舉值獲取remark值
/// ///
型別 ///
值 ///
public
string getenumname(type enumtype, string
enumvalue)
#region 使用列舉說明來填充下拉列表
//////使用列舉說明來填充下拉列表。
/// ///
下拉列表控制項。
///public
void
setenumdropdownlist(dropdownlist ddl, type enumtype)
}//////
使用列舉說明來填充下拉列表。
/// ///
///不顯示的項的編號
public
string setenumselect(type enumtype, string notshow = ""
)
}else
}return
selectlist;
}public
string
getenumlist(type enumtype)
else
}return
html;
}#endregion
}view code
cityenum.cs
usingview codesystem;
using
system.collections.generic;
using
system.linq;
using
system.text;
using
system.threading.tasks;
namespace
test.common.enum
}
利用列舉展示下拉列表
有時候我們想展示展示乙個下拉列表,但又不想從資料庫呼叫。這時我們可以通過列舉值來實現。構造方法 描述 public enumhelper string description 構造方法 作者 描述 相關的url public enumhelper string author,string descr...
根據樹形下拉框展示右側列表場景
一 場景圖示 這裡業務主要分為兩大部分,乙個左邊樹形結構,另乙個是根據左邊樹形結構展示右側列表。左邊樹形結構 全國是最大的主幹,主幹下面有主節點,每乙個主節點下面分為子節點。表的設計如下 一次性載入樹形結構 entity apimodel value 區域架構表 table name sys sel...
MVC 中將列舉型別繫結到下拉列表
一 建立乙個如下的擴充套件方法 static selectlist toselectlist tenum this tenum enumobj return newselectlist values,id name enumobj 二 控制器裡 如下 其中postatus是枚 舉型別 public ...