vote up 0 vote down star

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.

flag
1  
Show us the code, preferably the ASPX markup for the Repeater and GridView – Matthew Jones Aug 27 at 15:31
BTW, you are sure you are not accidentally setting Repeater.Visible = false somewhere? The little mistakes will kill ya. – Matthew Jones Aug 27 at 15:32

1 Answer

vote up 1 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.