【发布时间】:2017-03-23 05:42:52
【问题描述】:
我在 ASP.NET 页面中使用 DropDOwnCheckBox 作为我的控件之一。每次我尝试使用 Bootstrap 中的表单控制类时,我都没有得到任何响应。这是我的代码:
<cc1:DropDownCheckBoxes ID="ddlChkBoxLst" CssClass="form-control" runat="server" Visible="False" UseSelectAllNode="False" AddJQueryReference="true">
<%--<Style SelectBoxWidth="195" DropDownBoxBoxWidth="160" DropDownBoxBoxHeight="90"></Style>--%>
<Items>
<asp:ListItem Text="By Bank" Value="1"></asp:ListItem>
<asp:ListItem Text="By Sector" Value="2"></asp:ListItem>
<asp:ListItem Text="By Country" Value="3"></asp:ListItem>
<asp:ListItem Text="By Investment Type" Value="4"></asp:ListItem>
<asp:ListItem Text="By Location" Value="5"></asp:ListItem>
<asp:ListItem Text="By Amount" Value="6"></asp:ListItem>
</Items>
</cc1:DropDownCheckBoxes>
之前,我该如何解决这个问题?
【问题讨论】: