Question

Here is my code:

<asp:WebPartZone ID="Zone1" runat="server" Width="100%" PartChromeType="None" Padding="0" PartStyle-CssClass="NoPadding"
                PartStyle-BackColor="Transparent" BackColor="Transparent" PartChromeStyle-BackColor="Transparent">
                <PartStyle BackColor="Transparent"></PartStyle>
                <CloseVerb Visible="false" />
                <MinimizeVerb Visible="false" />
                <ZoneTemplate>
                    <div class="demo">
                        <p>Procedure Queues</p>
                    </div>
                    <div class="demoBottom">
                        <div class="divPortletContent">
                        <br />
                        <asp:DataList ID="dlProcedureQueues" runat="server" >
                            <ItemTemplate>
                                <asp:HyperLink ID="lbProcedureQueues" runat="server" Text='<%# Eval("site_nm") %>' NavigateUrl='<%# Eval("site_url") %>' />
                            </ItemTemplate>
                        </asp:DataList>
                        </div>
                    </div>
                </ZoneTemplate>
            </asp:WebPartZone>

The text from <div class="demo"><p>Procedure Queues</p></div> is miising and it works if I put it outside of webpart. Also, I am loosing all the css styles when placed inside webpart's ZoneTemplate.

Any ideas?? Thanks in advance.

Was it helpful?

Solution

Let me answer my own question. From what I found out, ZoneTemplate only considers the asp controls (including user controls) as web parts and ignores all the html.

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