Custom elements in ASP.NET with custom child-elements - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T15:42:04Z http://stackoverflow.com/feeds/question/673339 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/673339/custom-elements-in-asp-net-with-custom-child-elements 0 Custom elements in ASP.NET with custom child-elements Jan Aagaard 2009-03-23T13:22:55Z 2009-03-23T14:48:28Z <p>I know that it is possible to define custom tags in ASP.NET with User Controls. But as far as I know you can only add attributes to these controls. I would like to be able to embed more complex data, a bit lite this:</p> <pre><code>&lt;myControls:MyGraph id="myGraph1" runat="server"&gt; &lt;colors&gt; &lt;color&gt;#abcdef&lt;/color&gt; &lt;color&gt;#123456&lt;/color&gt; &lt;/colors&gt; &lt;/myControls:MyGraph&gt; </code></pre> <p>It this possible in ASP.NET? Should I try to extend a ListView? Or it there a better and more correct solution?</p> http://stackoverflow.com/questions/673339/custom-elements-in-asp-net-with-custom-child-elements/673659#673659 3 Answer by Aleris for Custom elements in ASP.NET with custom child-elements Aleris 2009-03-23T14:48:28Z 2009-03-23T14:48:28Z <p>It is certainly possible. For your example the classes would look like:</p> <pre><code>[ParseChildren(true)] class MyGraph : WebControl { List&lt;Color&gt; _colors = new List&lt;Color&gt;(); [PersistenceMode(PersistenceMode.InnerProperty)] public List&lt;Color&gt; Colors { get { return _colors; } } } class Color { public string Value { get; set; } } </code></pre> <p>And the actual markup would be:</p> <pre><code>&lt;myControls:MyGraph id="myGraph1" runat="server"&gt; &lt;Colors&gt; &lt;myControls:Color Value="#abcdef" /&gt; &lt;myControls:Color Value="#123456" /&gt; &lt;/Colors&gt; &lt;/myControls:MyGraph&gt; </code></pre>