我的 aspx 中有以下下拉菜单:
<aspx:DropDownList
ID="ddl1"
runat="server"/>
在代码隐藏 (C#) 中,我想从 DropDownList 中检索值。
我这样填充了我的下拉列表:
ddl1.DataSource = LocationOfData;
ddl1.DataBind();
LocationOfData 返回 CustomType 类型。编辑:CustomType 是一个枚举。
我希望能够完成以下任务:
CustomType? myvar = ddl1.Text
换句话说,使用我的 CustomType 创建一个可为空的变量并将其设置为等于下拉列表中的变量。但是我只能从 ddl1 中检索文本(字符串)的类型。