I have a combobox that is binded from xml file
this is my combobox code
this is my codebehind code
When i click off the combobox it goes back to first item in the list. i am not doing any postback so i dont see why this is happening.
this is my combobox code
<telerik:RadComboBox ID="RadComboBoxPaymentMethod" runat="server" Width="200px" />
this is my codebehind code
If Not Page.IsPostBack Then
RadComboBoxPaymentMethod.LoadContentFile(
"~/generated.xml")
End If
When i click off the combobox it goes back to first item in the list. i am not doing any postback so i dont see why this is happening.