vote up 0 vote down star

On aspx page I have a PlaceHolder that is inside Updatepanel.

I am creating nested-repeaters on runtime:

protected void Page_Init(object sender, EventArgs e)
{       
        CreateRepeater(PlaceHolder1, 0);
        Repeater repeater1 = (Repeater)PlaceHolder1.FindControl("Repeater1");

        if (repeater1 != null)        
            BindDataToRepeater(repeater1, 0);
            /*Each repeater creates another repeater(if needed)
              in repeater_ItemCreated event and binds it to data
              in repeater_ItemDataBound event
            */          
}

In repeater_ItemCommand event, after preforming an action (like deletion) i need to recreate and rebind the repeaters for changes to appear. What I do now is:

   Page.Response.Redirect(Page.Request.Url.ToString(), true);

Is there a better way to do so? Using UpdatePanel?

Or maybe another way?

flag

75% accept rate

1 Answer

vote up 1 vote down check

I think you just need to call Repeater1.DataBind() in your Delete event handler to refresh the controls.

link|flag
This should rebind or nested controls as well? – markiz May 20 at 14:27
I think it works! – markiz May 20 at 15:10

Your Answer

Get an OpenID
or

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