我正在尝试创建一个带有一些控件、文本框、标签和下拉列表的自定义 Web 控件,我想做的是在自定义控件上添加一个属性以允许在下拉列表中添加选择选项,方法相同如果它只是一个普通的下拉列表,你会的,即
<asp:DropDownList ID="normalddl" runat="server">
<asp:ListItem Text="1st value" Value="0"></asp:ListItem>
<asp:ListItem Text="2nd value" Value="1"></asp:ListItem>
</asp:DropDownList>
我想要一个看起来像这样的自定义控件(这是一个简化版本)
<mycustomControl:ControlNamt ID="customddl" runat="server" >
<asp:ListItem Text="1st value" Value="0"></asp:ListItem> -- how would I go about adding this in the custom control?
<asp:ListItem Text="2nd value" Value="1"></asp:ListItem>
</mycustomControl:ControlNamt>