Custom elements in ASP.NET with custom child-elements - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T15:42:04Zhttp://stackoverflow.com/feeds/question/673339http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/673339/custom-elements-in-asp-net-with-custom-child-elements0Custom elements in ASP.NET with custom child-elementsJan Aagaard2009-03-23T13:22:55Z2009-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><myControls:MyGraph id="myGraph1" runat="server">
<colors>
<color>#abcdef</color>
<color>#123456</color>
</colors>
</myControls:MyGraph>
</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#6736593Answer by Aleris for Custom elements in ASP.NET with custom child-elementsAleris2009-03-23T14:48:28Z2009-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<Color> _colors = new List<Color>();
[PersistenceMode(PersistenceMode.InnerProperty)]
public List<Color> Colors {
get { return _colors; }
}
}
class Color {
public string Value { get; set; }
}
</code></pre>
<p>And the actual markup would be:</p>
<pre><code><myControls:MyGraph id="myGraph1" runat="server">
<Colors>
<myControls:Color Value="#abcdef" />
<myControls:Color Value="#123456" />
</Colors>
</myControls:MyGraph>
</code></pre>