ASP.net模板化用户控件

时间:2010-12-19 18:20:22

标签: user-controls

我见过一些模板化的用户控件,如:

<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>

你能告诉我一个方法吗?

1 个答案:

答案 0 :(得分:1)

MSDN网站上有short tutorial。也许它对你有所帮助?