vote up 0 vote down star

OK, I've used repeaters literally hundreds of times without problems but something has gone awry today. I have a repeater and I'm subscribing to the itemCommand event, but when my command runs, the page posts back but the event isn't fired.

To get around this I'm having to do my databinding on each postback.

My repeater looks like this:

<asp:Repeater id="MyRepeater" runat="server" onitemcommand="MyRepeater_ItemCommand">
<ItemTemplate>
    <li>
    <asp:Label id="Label" runat="server" />
    <asp:LinkButton id="LinkButton1" runat="server" commandname="Complete" commandargument='<%# Eval("MyID") %>' text='<%# Eval("Title") %>' />
    </li>
</ItemTemplate>
</asp:Repeater>

and my codebehind like this:

protected void Page_Load(object sender, EventArgs e)
{
    if (!IsPostBack)
    {
    SetupPage();
    }
}

private void SetupPage()
{
    // Do other stuff

    MyRepeater.DataSource = Repository.GetStuff()
    MyRepeater.DataBind();
}


protected void MyRepeater_ItemCommand(object sender, RepeaterCommandEventArgs e)
{


// Do all my stuff here
}

MyRepeater_ItemCommand is not getting called unless I comment out the if (!IsPostBack) line. Once that is commented out and the repeater is getting databound on each postback it works OK. I've done this in so many other pages but on this on it just doesn't seem to work.

Anyone else come across this behaviour or have a solution?

flag

63% accept rate
Show us the complete code of your page (markup & backend) if possible. – Bdiem Aug 24 at 12:17
Complete markup won't fit in the comments box, but there isn't anything unusual in the page at all. Using master pages (no reference to disabling ViewState in master pages either) and Content Placeholders and then a repeater - very simple. Code behind has some more database/repository access code but again nothing unusual – Ciaran Aug 24 at 14:09

4 Answers

vote up 3 vote down

Most likely, you have disabled ViewState for the page.

The reason is that when you execute the postback, all the controls in the repeater are rebuild from the data in the viewstate normally. Then the object that should receive the event is identified based on the ID of the control, and the event is routed.

If you disable the viewstate, the control tree is not rebuild during postback, and therefore the control that should receive the event does not exist in memory. So the event dies.

If you really want to disable the viewstate, but still want to receive the event, I have a workaround (and it's not dirty at all). I've long been thinking about writing a blog entry about it, so if you want, I can take a bit time off my normal chores, and describe it.

link|flag
+1, in past I had same problem with viewstate. (I would like to know your workround) – Cleiton Aug 24 at 13:15
+1 this makes a lot more sense. maybe add this to your answer. msdn.microsoft.com/en-us/library/ms972976.aspx – Bdiem Aug 24 at 13:31
No, ViewState is enabled (I have not disabled it anywhere in the application anyway) – Ciaran Aug 24 at 13:59
Oh, and other items on the page that are databound keep their state when I'm not binding on each postback, so I really don't think it's a ViewState issue – Ciaran Aug 24 at 14:05
+1 great discription. It also might be nice to see that work around. I use the Item Command on a heavy page and it make it that much more having to lug the viewstate. – Tim Meers Aug 24 at 18:26
show 1 more comment
vote up 0 vote down

Do you have viewstate turned on for this page?

link|flag
Yup, ViewState is turned on – Ciaran Aug 24 at 13:57
vote up 0 vote down

I am not positive about this, but you might have to set the CommandName and optionally CommandArgument properties for the button causing the ItemCommand event. Otherwise ASP.NET would assume that there is no button on the page, which you'd like to fire the event. You can try that.

Plus, if you're not differentiating between command names, why not use each button's Click event instead? Just subscribe to those in the repeater's ItemCreated or ItemDataBound.

link|flag
As you can see from the code above I have specified a CommandName and a CommandArgument. I already have a work around for this by databinding on each postback - but I don't want to have to do that – Ciaran Aug 24 at 14:00
vote up 0 vote down

Try using Page_init instead of Page_load and that should fix the problem.

link|flag

Your Answer

Get an OpenID
or
never shown

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