I've got a ListView control with a List of 'Books' bound to it. The List is a 'global' list that is created on the Master page. On the Default page, I bind the ListView to the Master.List structure. Then the page loads with all the objects just as I'd expect.
Now for each Book in the List, ImageButton's are created in the ListView with an image of the Book's cover. When I click on one of the ImageButtons, I need to modify the object from the List represented by the ImageButton, however, when I get into the _Click() method, my Master.List is empty! I don't get it! I've traced the code and no other code is called before the _Click() method, so why is my List going empty and how can I fix this? I really don't understand...is this something that is 'known' to happen or a problem that people have seen before??
Thanks!