views:

68

answers:

1

I have a Repeater generating ImageButtons.

When I click an ImageButton or interact with the GridView elswhere on the page, everything generated in my Repeater disappears.

All of my controls are in an UpdatePanel so I dont beleive this is a PostBack issue.

+1  A: 

You still need to re-bind your repeater on every single page load. An UpdatePanel still causes a postback, albeit a partial one.

It is often common to run your DataBind code within the click events of any buttons and also in a !IsPostBack on the Page_Load.

Robin Day