I have created a List which generates a custom event based on Example 1 from this page, and I need to update an aspx page whenever there are any new elements in the List.

When I debug the application I can see that the value was updated, but nothing appears on the page.

ASPX

        <asp:ScriptManager ID="ScriptManager1" runat="server">
        </asp:ScriptManager>
        <asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional" ChildrenAsTriggers="false">
            <ContentTemplate>
                <fieldset>
                <legend>UpdatePanel</legend>
                <asp:Label ID="xpto" runat="server" Text="zzzzzzzzzzzz"></asp:Label>
                </fieldset>
            </ContentTemplate>
        </asp:UpdatePanel>

Code Behind

MessageHandling.DashboardRequests.Changed += new EventHandler(ListChanged);
...
...
...
private void ListChanged(object sender, EventArgs e)
{
    DateTime dt = DateTime.Now;
    xpto.Text = dt.ToString();
}

EDIT:

If I change the UpdateMode to Always and ListChanged method to:

private void ListChanged(object sender, EventArgs e)
{
  DateTime dt = DateTime.Now;
  xpto.Text = dt.ToString();
  UpdatePanel1.Update();
} 

I get the following error:

The Update method can only be called on UpdatePanel with ID 'UpdatePanel1' when UpdateMode is set to Conditional. 

And if I set the UpdateMode to Conditional nothing happens again.

If I create a timer and add this method:

protected void Timer1_Tick(object sender, EventArgs e)
{
  DateTime dt = DateTime.Now;
  xpto.Text = dt.ToString();
}

the xpto is updated in the timer method correctly

link|improve this question

45% accept rate
Why are you using UpdateMode="Conditional"? and when are you updating the UpdatePanel? Check UpdatePanel UpdateMode Property – RoboLover Nov 25 '11 at 16:17
@AteşGÜRAL - Your link is wrong I think you meant this msdn.microsoft.com/en-us/library/… – Hogan Nov 25 '11 at 16:23
Added information in the original post – balizeiro Nov 25 '11 at 17:13
@Hogan yes totally, thank you. – RoboLover Nov 25 '11 at 21:33
balizeiro I think there is a misunderstanding here, if you set Update mode to Always you don't need to do UpdatePanel1.Update() I mean at least that is how I use it.So set it conditional and do UpdatePanel1.Update() when needed, or set it to always and do not use UpdatePanel1.Update(). – RoboLover Nov 25 '11 at 21:37
show 1 more comment
feedback

1 Answer

Change UpdateMode to Always as suggested by Ates.


(old)

The code looks ok, so I will make a WAG -- are you updating xpto.Text ANYWHERE else in the page lifecycle?

link|improve this answer
No, the only place where xpto is referenced is in ListChanged(...) – balizeiro Nov 25 '11 at 16:07
I'd have to see the rest of your code, I will note the example you were looking at is not an ASP.NET example but a windows forms example – Hogan Nov 25 '11 at 16:14
Here's the code I'm using to create the Event pastebin.com/6Kahhz3h – balizeiro Nov 28 '11 at 9:37
feedback

Your Answer

 
or
required, but never shown

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