Author: skel | Posted on: 7/8/2008 12:25:50 PM | Views : 1213

Greetings,
 I'm trying to create an ASP.NET user control that will expose a collection of objects as a property. As a proof of concept, I'm simply trying to implement a test control that contains an array of strings, and I'm attempting to enable design-time editing of the property. No matter what I seem to do, my test property doesn't show up in the designer window. Below is a code snippet...
 

/* using directives omitted for brevity */

[ParseChildren(true)]
[PersistChildren(false)]
public partial class Controls_TabView : System.Web.UI.UserControl
{
private string[] strings_ = new string[20];

protected void Page_Load(object sender, EventArgs e)
...

Go to the complete details ...