I have a dropdownlist control like this:
<asp:DropDownList ID="DropDownList1" runat="server"
DataSourceID="SqlDataSource1" DataTextField="cnumber" DataValueField="cid">
</asp:DropDownList>
In the code behind, how do I get the value of "cnumber" and the value of "cid" respectively?
Go to the complete details ...