Question

I just cant get my webparts change their zone in design mode. Tried everything but doesn't help

<asp:WebPartManager ID="WebPartManager1" runat="server">
            <StaticConnections>
                <asp:WebPartConnection ID="connection1"
                    ConsumerConnectionPointID="ZipCodeConsumer"
                    ConsumerID="zipConsumer"
                    ProviderConnectionPointID="ZipCodeProvider"
                    ProviderID="zipProvider" />
            </StaticConnections>
        </asp:WebPartManager>
        <div class="div1">
            <asp:WebPartZone ID="WebPartZone1" runat="server" AllowLayoutChange="true">
                <ZoneTemplate>
                    <uc1:UserCtrlForProperty runat="server" ID="UserCtrlForProperty"/>
                    <asp:BulletedList ID="BulletedList1" runat="server" Title="Select Movie/Book">
                        <asp:ListItem Text="Books" Value="B"></asp:ListItem>
                        <asp:ListItem Text="Movies" Value="M"></asp:ListItem>
                    </asp:BulletedList>

                </ZoneTemplate>
            </asp:WebPartZone>
        </div>
        <div class="div2">
            <asp:WebPartZone ID="WebPartZone2" runat="server" AllowLayoutChange="true">
                <ZoneTemplate>
                    <asp:Calendar ID="Calendar1" runat="server" Title="My Static Calendar"></asp:Calendar>
                </ZoneTemplate>
            </asp:WebPartZone>
        </div>
Was it helpful?

Solution

WebParts don't work in all versions of IE.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top