I am trying to programatically select an item in a combo box list and select only one item in the list. I tried to use the SelectIndexChange event, but it seems to do nothing. I can use radiobuttonlist as well, but neither one seems to be doing what I want it to. Is there any way around this? Can anyone give me a suggestion taht will work and be formulaic because I am trying to use many of them radiobuttonlists or comboxlists? Thanks.
Code:
Protected Sub cblAssessType_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles cblAssessType.SelectedIndexChanged
Dim temp As String
temp = cblAssessType.SelectedValue
cblAssessType.ClearSelection()
cblAssessType.SelectedValue = temp
End Sub