On PostBack, from clicking on an ImageButton, it first hits
protected void Page_Load(object sender, EventArgs e)
Then it hits
protected void ImageButton_Click(object sender, EventArgs e)
My problem is that in my Page_Load it refreshes a ListBox before the selected items can be processed by ImageButton_Click.
Is there a way to tell what events are yet to be processed, so I can handle them?