ASP.NET用户控件列表/集合/数组属性

前端之家收集整理的这篇文章主要介绍了ASP.NET用户控件列表/集合/数组属性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我创建了用户控件.它有string []公共属性(可能是List< string>或者其他).我想支持在声明此usercontrol的实例时在aspx代码中定义此属性.像这样的东西:
<uc1:MyControl ID="MyControl1" runat="server">
    <MyStringCollectionProperty>
        <string>My String 1</string>
        <string>My String 2</string>
        <string>My String 3</string>
    </MyStringCollectionProperty>
</uc1:MyControl>

如何使它工作?谢谢…

解决方法

您实际上可以使用TypeConverterAttribute来指定转换器类(在本例中为StringArrayConverter).
原文链接:/aspnet/245322.html

猜你在找的asp.Net相关文章