|
|
|
date: Tue, 2 Oct 2007 04:18:00 -0700,
group: microsoft.public.dotnet.framework.aspnet.buildingcontrols
back
RE: Repeater in Server Control
Hi Joe,
To do this, you will need to first create a new class that implements
ITemplate, in ITemplate.InstantiateIn method, you create other controls
that need to be put in the template and add to the container. Later, you
create an instance of your new class and assign to Repeater.ItemTemplate
property.
Here's MSDN document and example on this:
http://msdn2.microsoft.com/en-us/library/y0h809ak(VS.71).aspx
Please feel free to let me know if there's anything unclear. Thanks.
Regards,
Walter Wang (wawang@online.microsoft.com, remove 'online.')
Microsoft Online Community Support
==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
date: Wed, 03 Oct 2007 06:12:37 GMT
author: (Walter Wang [MSFT])
RE: Repeater in Server Control
Hi Joe,
To do this, you will need to first create a new class that implements
ITemplate, in ITemplate.InstantiateIn method, you create other controls
that need to be put in the template and add to the container. Later, you
create an instance of your new class and assign to Repeater.ItemTemplate
property.
Here's MSDN document and example on this:
http://msdn2.microsoft.com/en-us/library/y0h809ak(VS.71).aspx
Please feel free to let me know if there's anything unclear. Thanks.
Regards,
Walter Wang (wawang@online.microsoft.com, remove 'online.')
Microsoft Online Community Support
==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
date: Wed, 03 Oct 2007 06:12:37 GMT
author: (Walter Wang [MSFT])
RE: Repeater in Server Control
Hi Joe,
To do this, you will need to first create a new class that implements
ITemplate, in ITemplate.InstantiateIn method, you create other controls
that need to be put in the template and add to the container. Later, you
create an instance of your new class and assign to Repeater.ItemTemplate
property.
Here's MSDN document and example on this:
http://msdn2.microsoft.com/en-us/library/y0h809ak(VS.71).aspx
Please feel free to let me know if there's anything unclear. Thanks.
Regards,
Walter Wang (wawang@online.microsoft.com, remove 'online.')
Microsoft Online Community Support
==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
date: Wed, 03 Oct 2007 06:12:37 GMT
author: (Walter Wang [MSFT])
RE: Repeater in Server Control
Thanks Walter,
I'm on vacation right now but will give it a shot when I am back in the
office.
Regards,
Joe
--
www.xcomplica.com
""Walter Wang [MSFT]"" wrote:
> Hi Joe,
>
> To do this, you will need to first create a new class that implements
> ITemplate, in ITemplate.InstantiateIn method, you create other controls
> that need to be put in the template and add to the container. Later, you
> create an instance of your new class and assign to Repeater.ItemTemplate
> property.
>
> Here's MSDN document and example on this:
>
> http://msdn2.microsoft.com/en-us/library/y0h809ak(VS.71).aspx
>
>
> Please feel free to let me know if there's anything unclear. Thanks.
>
>
> Regards,
> Walter Wang (wawang@online.microsoft.com, remove 'online.')
> Microsoft Online Community Support
>
> ==================================================
> When responding to posts, please "Reply to Group" via your newsreader so
> that others may learn and benefit from your issue.
> ==================================================
>
> This posting is provided "AS IS" with no warranties, and confers no rights.
>
>
date: Fri, 5 Oct 2007 11:31:00 -0700
author: Joe C am
|
|