I have on my web form one dropdownlist which data source is datatable.
dt = New DataTable
dt = .....
dropdownlist.DataSource = dt
dropdownlist.DataBind()
When I click on dropdown I have 3 values John, Tom, Mike.
When user change the text TextChanged and SelectedIndexChanged events don't fire.
How to get event when user change the text? Is it bug or what?
Thank you
dt = New DataTable
dt = .....
dropdownlist.DataSource = dt
dropdownlist.DataBind()
When I click on dropdown I have 3 values John, Tom, Mike.
When user change the text TextChanged and SelectedIndexChanged events don't fire.
How to get event when user change the text? Is it bug or what?
Thank you