Blog Application - Update Panel
Hi,
I am working on the blog application again and have a very strange problem in the following code. I have embedded an image rotator which is based on flash player in BlogEntries.ascx page. The idea of this is that the blogs can go along with bunch of related photos. The image rotator does not work with the piece of code sitting in the main aspx page as follows. But If I remove the upd_vd update panel from this code everything works fine including the image rotator. My question is what are the impacts to the the blog application if I remove this update panel. I tested the application I can not figure out any impacts...
Thanks for your thoughts.
<asp:UpdatePanelID="upd_vd"runat="server"RenderMode="Inline">
<ContentTemplate>
<divclass="item">
<uc10:BlogEntriesID="BlogEntries"runat="server"/>
</div>
</ContentTemplate>
</asp:UpdatePanel>
Last edited by norman001; March 15th, 2009 at 08:40 AM..
|