我將它們綁定到下拉像如何獲取枚舉值?
ddlCompQuarter.DataSource = Enum.GetNames(typeof(CompanyQuarters));
ddlCompQuarter.DataBind();
現在我想獲取下拉列表選擇的值。對於例如用於選擇列表我已經定義枚舉像
public Enum CompanyQuarters
{
First=1,
Second=2,
Third=3,
Fourth=4
}
「第二」我喜歡取2 ?
這不起作用
int selectedVal = int.Parse(ddlCompQuarter.SelectedValue.ToString());
順便說一句,什麼是'CompanyQuarters'? (你剛剛提供了ActiveQuarters) – sll 2012-03-06 11:54:21
我的不好,只是一個錯字(更正後) – 2012-03-06 12:01:34
可能重複的[如何通過鍵名獲取枚舉值](http://stackoverflow.com/questions/540746/how-to-get -enum-value-by-keyname) – 2012-03-10 07:06:12