How do you build an ASP.NET custom control with a collection property ? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T06:39:57Zhttp://stackoverflow.com/feeds/question/123616http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/123616/how-do-you-build-an-asp-net-custom-control-with-a-collection-property3How do you build an ASP.NET custom control with a collection property ?Larsenal2008-09-23T20:22:06Z2008-09-23T21:03:06Z
<p>I'm looking to do something akin to</p>
<pre><code><cstm:MyControl runat="server">
<myItem attr="something" />
<myItem attr="something" />
</cstm:MyControl>
</code></pre>
<p>What's the bare bones code needed to pull this off?</p>
<p>Rick's example shows something akin to </p>
<pre><code><cstm:MyControl runat="server">
<myItems>
<cstm:myItem attr="something" />
<cstm:myItem attr="something" />
</myItems>
</cstm:MyControl>
</code></pre>
<p>I'd prefer the more terse syntax if possible.</p>
<p><em>Note: Feel free to suggest a better title or description. Even if you don't have edit rights, I'm glad to edit the entry for the sake of the community.</em></p>
http://stackoverflow.com/questions/123616/how-do-you-build-an-asp-net-custom-control-with-a-collection-property/123646#1236463Answer by AaronSieb for How do you build an ASP.NET custom control with a collection property ?AaronSieb2008-09-23T20:26:44Z2008-09-23T20:26:44Z<p>I was able to implement this after following Rick Strahl's examples:<br />
<a href="http://www.west-wind.com/weblog/posts/200.aspx" rel="nofollow">http://www.west-wind.com/weblog/posts/200.aspx</a></p>
http://stackoverflow.com/questions/123616/how-do-you-build-an-asp-net-custom-control-with-a-collection-property/123867#1238675Answer by Chris Pietschmann for How do you build an ASP.NET custom control with a collection property ?Chris Pietschmann2008-09-23T21:03:06Z2008-09-23T21:03:06Z<p>Here's a really simple example control that does exactly what you are looking for:</p>
<pre><code>namepsace TestControl
{
[ParseChildren(true, DefaultProperty = "Names")]
public class MyControl : Control
{
public MyControl()
{
this.Names = new List<PersonName>();
}
[PersistenceMode(PersistenceMode.InnerDefaultProperty)]
public List<PersonName> Names { get; set; }
}
public class PersonName
{
public string Name { get; set; }
}
}
</code></pre>
<p>And, here's example usage:</p>
<pre><code><%@ Register Namespace="TestControl" TagPrefix="TestControl" %>
<TestControl:MyControl runat="server" ID="MyControl1">
<TestControl:PersonName Name="Chris"></TestControl:PersonName>
<TestControl:PersonName Name="John"></TestControl:PersonName>
</TestControl:MyControl>
</code></pre>