views:

18

answers:

2

My update panel must update some panel out of content of this panel, for example I've got

<update panel>
        some staff
</update panel>
<div>
        No need to update staff
        Need to update staff
</div>

How can I update "Need to update staff" when updating "some staff" in my update panel ?

A: 

The simples must be to expand your update panel.

Otherwise put your div in a partial page and load with jquerys load method.

Henrik
+1  A: 

You'd either:

  • Have them both in the same updatePanel
  • Have them in two seperate updatePanels with an update trigger

As you say they have to be seperate (why?) use the second option.

m.edmondson
@nCdy - Thanks for the accept, out of interest which option did you go for?
m.edmondson
Used update trigger, it was something new for me
nCdy