Button not working after postback

sopi

New member
Joined
Feb 28, 2006
Messages
2
Programming Experience
3-5
Hello. I have come across this dilemma. I have an "OK" button and 3 drop down boxes, all have auto post-back so that the selection in the first 2 drop downs affect what is displayed in the 3rd drop down (the 3rd drop down has the items added dynamically). The problem is that when there are values in all 3 drop downs, the "OK" button does not work. I put a breakpoint on it, and the button's sub isn't even being called. Anyone know what's going on?

Thanks,
Mike
 
Does that mean that the button works correctly before the 3rd dropdown is populated, or does it stop working after the first postback occurs, or does it not work at all? Also, you mentioned that the sub isn't being called, does that mean that the postback is occurring, but not breaking? or is the postback not even happening?

One thing you could try is catching the OnBubbleEvent, maybe the button click is raising the event there. This is how events are captured for buttons that are dynamically placed into the page.
 
Back
Top