so the move part doesnt work if wrapped inside an update panel?
Can i do soemthing like this?
<ZoneTemplate>
<asp:UpdatePanel>
<ContentTemplate>
<uc1:StatusHistory Title="Status History" ID="StatusHistory" runat="server" />
</ContentTemplate>
</asp:UpdatePanel>
</ZoneTemplate>
or does it have to be inside the control 'StatusHistroy'?
Main Topics
Browse All Topics





by: daniel_ballaPosted on 2007-09-21 at 15:56:46ID: 19939746
Make sure that the web parts (the WebPartManager and WebPartZones) are not wrapped in an update panel. That will not work (not in asp.net ajax 1.0).
However, you can have update panels in the webparts instead, therefore you can update the contents of the web part without a postback.
Cheers,
Dan