CheckBoxList.SelectedIndexChange

rmatthew

Centurion
Joined
Dec 30, 2002
Messages
115
Location
Texas
I have a page with several dynaically created
System.Web.UI.WebControls.CheckBoxList controls created at page load.

I have added a handler meant for when an item is selected/unselected as such:

AddHandler chklst.SelectedIndexChanged, AddressOf filterchange

All works well when I select an item, but it doesn't appear that the handler (filterchange) is called when an item is unselected - the page does reaload, but doesn't ever enter the filterchange handler?

Any ideas?

Randal
 
Back
Top