I have a web form with 2 user controls each having 2 buttons (they're both slideshow type controls) When any button is clicked, we make it to page_load and IsPostBack=false. This causes one time initialization code to get executed every time a button is clicked. it is my understanding that button clickscause postbacks and therefor should enter page_load owith ispostback=true. What might be causing this behavior? I've been stummped for hours!
I'm guessing that your buttons are working like hyperlinks, and not like buttons.
In other words, they don't cause the form to be posted, they just link to the same page.
I hope this helps...
Jos
Would you mind providing as much of your code as possible to represent your problem?