Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Atlas and Webparts

Status
Not open for further replies.

seabaz2000

IS-IT--Management
Feb 24, 2006
79
0
0
IE
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.

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
 
Try this...

Code:
<atlas:UpdatePanel ID="UpdatePanel1" runat="server" [b]Mode="Conditional"[/b]>

Not sure if that will work as I have almost no experience with Atlas (yet ;-) )
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top