Home All Groups Group Topic Archive Search About
Author
22 Oct 2006 9:56 PM
David Thielen
Hi;

Is there a way to build a table using asp:Repeater where the asp:Table is
started in the header and ended in the footer? Everything I have tried does
not work.

--
thanks - dave
david_at_windward_dot_net
http://www.windwardreports.com

Cubicle Wars - http://www.windwardreports.com/film.htm

Author
23 Oct 2006 5:59 AM
Walter Wang [MSFT]
Hi David,

Do you mean that you want to create a Table control using the Repeater
control's HeaderTemplate and FooterTemplate like following?

    <asp:Repeater ID="repeater1" runat="server">
        <HeaderTemplate>
            <asp:Table ID="table1" runat="server">
        </HeaderTemplate>
        <FooterTemplate>
            </asp:Table>
        </FooterTemplate>
    </asp:Repeater>

I don't think it's possible to cross over two server-side control tags.

Also, can I ask why a <table> html tag doesn't work for you?

Sincerely,
Walter Wang (waw***@online.microsoft.com, remove 'online.')
Microsoft Online Community Support

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications. If you are using Outlook Express, please make sure you clear the
check box "Tools/Options/Read: Get 300 headers at a time" to see your reply
promptly.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.
Author
23 Oct 2006 4:01 PM
David Thielen
THat's what I thought too - but I wanted to make sure. Thanks

--
thanks - dave
david_at_windward_dot_net
http://www.windwardreports.com

Cubicle Wars - http://www.windwardreports.com/film.htm




Show quoteHide quote
"Walter Wang [MSFT]" wrote:

> Hi David,
>
> Do you mean that you want to create a Table control using the Repeater
> control's HeaderTemplate and FooterTemplate like following?
>
>     <asp:Repeater ID="repeater1" runat="server">
>         <HeaderTemplate>
>             <asp:Table ID="table1" runat="server">
>         </HeaderTemplate>
>         <FooterTemplate>
>             </asp:Table>
>         </FooterTemplate>
>     </asp:Repeater>
>
> I don't think it's possible to cross over two server-side control tags.
>
> Also, can I ask why a <table> html tag doesn't work for you?
>
> Sincerely,
> Walter Wang (waw***@online.microsoft.com, remove 'online.')
> Microsoft Online Community Support
>
> ==================================================
> Get notification to my posts through email? Please refer to
> http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
> ications. If you are using Outlook Express, please make sure you clear the
> check box "Tools/Options/Read: Get 300 headers at a time" to see your reply
> promptly.
>
> Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
> where an initial response from the community or a Microsoft Support
> Engineer within 1 business day is acceptable. Please note that each follow
> up response may take approximately 2 business days as the support
> professional working with you may need further investigation to reach the
> most efficient resolution. The offering is not appropriate for situations
> that require urgent, real-time or phone-based interactions or complex
> project analysis and dump analysis issues. Issues of this nature are best
> handled working with a dedicated Microsoft Support Engineer by contacting
> Microsoft Customer Support Services (CSS) at
> http://msdn.microsoft.com/subscriptions/support/default.aspx.
> ==================================================
>
> This posting is provided "AS IS" with no warranties, and confers no rights.
>
>