I am wondering if it’s possible to send an array of strings to a tag’s property
<SampleTag:Form
runat="server"
ID="sampleform1"
Items={item1,item2,item3,item4}
>
</SampleTag:Form>
This doesn’t work since it sends “{item1,item2,item3,item4}” as a string to the class.
Better off doing this in code behind