Hey,
I have a DropDownList, and when SelectedIndex is changed any event is triggered.
I'm putting on it for exemple msgbox, but it's not working.
What's the problem ?
EDIT;
now that's working after doing AutoPostBack = True.
I did this, but i't giving me always '0' as result
Protected Sub VD_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs)
MsgBox VD.SelectedIndex
End Sub