seabaz2000
IS-IT--Management
Hi,
I watched the screencast by Marc Schweigert on
AJAX Enabling ASP.NET 2.0 Web Parts with "Atlas"
I attempted to do the same with a page of mine but with no success. I am unsure as to what I am doing wrong. No errors are popping up, its just that it still posts back the entire page and not the individual webpart. Here is the code of my page.
I would be extremely grateful for any help on the issues.
Thanking you in advance,
Regards
I watched the screencast by Marc Schweigert on
AJAX Enabling ASP.NET 2.0 Web Parts with "Atlas"
I attempted to do the same with a page of mine but with no success. I am unsure as to what I am doing wrong. No errors are popping up, its just that it still posts back the entire page and not the individual webpart. Here is the code of my page.
Code:
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<atlas:ScriptManager ID="ScriptManager1" runat="server" EnablePartialRendering="True">
</atlas:ScriptManager>
<atlas:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:WebPartManager ID="WebPartManager1" runat="server" OnDisplayModeChanged="DispModeChanged">
</asp:WebPartManager>
<asp:Table ID="Table1" Width="100%" runat="server">
<asp:TableRow>
<asp:TableCell ColumnSpan="2">
<asp:CatalogZone ID="CatalogZone1" Width="100%" runat="server">
<ZoneTemplate>
<asp:PageCatalogPart ID="Pages" runat="server" Title="Page Web Part Configuration" />
</ZoneTemplate>
</asp:CatalogZone>
</asp:TableCell>
</asp:TableRow>
<asp:TableRow>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell Width="100%" VerticalAlign="Top">
<asp:ConnectionsZone ID="ConnectionsZone1" runat="server">
</asp:ConnectionsZone>
<asp:WebPartZone ID="LeftZone" runat="server">
<ZoneTemplate>
<wp:ModelProvider ID="ModelData" runat="server" Title="Model Provider"/>
<wp:OboutTreeView ID="OboutTree" runat="server" Title="Process Model Tree" />
<wp:UserInfo ID="UserInfo" runat="server" Title="User Details" />
</ZoneTemplate>
</asp:WebPartZone>
</asp:TableCell>
<asp:TableCell ID="SvgContent" VerticalAlign="Top">
<asp:WebPartZone ID="RightZone" runat="server" >
<ZoneTemplate>
<wp:ProcessViewInstructions ID="Instructions" runat="server" Title="Instructions (WebPart)" />
<wp:SvgProcessDiagram ID="ProcessDiagram" runat="server" Title="Process Diagram" />
</ZoneTemplate>
</asp:WebPartZone>
</asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell ColumnSpan="2" HorizontalAlign="Right" VerticalAlign="Middle">
<asp:Image ID="imgCatalog" ImageUrl="~/Images/Catalog.gif" runat="server" />
<asp:LinkButton ID="btnConfigWp" runat="server" Text="Open Web Part Catalog" Font-Size="Larger" Font-Bold="true" OnClick="CatalogMode" />
</asp:TableCell>
</asp:TableRow>
</asp:Table>
</ContentTemplate>
</atlas:UpdatePanel>
</asp:Content>
I would be extremely grateful for any help on the issues.
Thanking you in advance,
Regards