objectdatasource に接続されたドロップダウンリストがあります。DataValueField=TypeId を取得するにはどうすればよいですか? 選択した Type を取得するために onselectedindexchanged を使用していますが、TypeId で同じことを行うにはどうすればよいですか?
<asp:DropDownList ID="DropDownList" runat="server"
DataSourceID="ObjectDataSource" DataTextField="Type"
DataValueField="TypeId" AutoPostBack="true"
onselectedindexchanged="DropDownList_SelectedIndexChanged">
</asp:DropDownList>