0

我有一个连接到对象数据源的下拉列表。如何获得 DataValueField=TypeId ?我使用 onselectedindexchanged 来获取选定的类型,我怎样才能对 TypeId 做同样的事情?

 <asp:DropDownList ID="DropDownList" runat="server"  
 DataSourceID="ObjectDataSource" DataTextField="Type"  
 DataValueField="TypeId" AutoPostBack="true"  
 onselectedindexchanged="DropDownList_SelectedIndexChanged">
                        </asp:DropDownList>
4

2 回答 2

1

不确定我是否理解....你想获得选定的值吗?在这种情况下,这是你必须做的

string typeId = DropDownList.SelectedValue
于 2012-04-04T12:27:44.707 回答
1

要获取值:

int id = int.Parse(DropDownList.SelectedValue);
于 2012-04-04T12:28:43.800 回答