我见过一些模板化的用户控件,如:
<uc:Control1 ID="Uc1" runat="server">
<messagetemplate>a</messagetemplate>
</uc:Control1>
到目前为止一切顺利。但我想要做的是将参数传递给控件,如。
<uc:Control1 ID="Uc1" runat="server">
<messagetemplate>
<CustomAttribute="Color" Value="Green" />
<CustomAttribute="Size" Value="Small" />
<CustomAttribute="Param1" Value="1" />
</messagetemplate>
</uc:Control1>
你能告诉我一个方法吗?