How do you build an ASP.NET custom control with a collection property ? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T06:39:57Z http://stackoverflow.com/feeds/question/123616 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/123616/how-do-you-build-an-asp-net-custom-control-with-a-collection-property 3 How do you build an ASP.NET custom control with a collection property ? Larsenal 2008-09-23T20:22:06Z 2008-09-23T21:03:06Z <p>I'm looking to do something akin to</p> <pre><code>&lt;cstm:MyControl runat="server"&gt; &lt;myItem attr="something" /&gt; &lt;myItem attr="something" /&gt; &lt;/cstm:MyControl&gt; </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>&lt;cstm:MyControl runat="server"&gt; &lt;myItems&gt; &lt;cstm:myItem attr="something" /&gt; &lt;cstm:myItem attr="something" /&gt; &lt;/myItems&gt; &lt;/cstm:MyControl&gt; </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#123646 3 Answer by AaronSieb for How do you build an ASP.NET custom control with a collection property ? AaronSieb 2008-09-23T20:26:44Z 2008-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#123867 5 Answer by Chris Pietschmann for How do you build an ASP.NET custom control with a collection property ? Chris Pietschmann 2008-09-23T21:03:06Z 2008-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&lt;PersonName&gt;(); } [PersistenceMode(PersistenceMode.InnerDefaultProperty)] public List&lt;PersonName&gt; Names { get; set; } } public class PersonName { public string Name { get; set; } } } </code></pre> <p>And, here's example usage:</p> <pre><code>&lt;%@ Register Namespace="TestControl" TagPrefix="TestControl" %&gt; &lt;TestControl:MyControl runat="server" ID="MyControl1"&gt; &lt;TestControl:PersonName Name="Chris"&gt;&lt;/TestControl:PersonName&gt; &lt;TestControl:PersonName Name="John"&gt;&lt;/TestControl:PersonName&gt; &lt;/TestControl:MyControl&gt; </code></pre>