我正在尝试使用ajaxtoolkit CascadingDropDown设置过滤器。 问题是我需要设置CascadingDropDown作为父2其他CascadingDropDown。
我的代码如下所示:
<asp:DropDownList ID="Parent1" runat="server"/>
<ajaxToolkit:CascadingDropDown ID="CCDParent1" runat="server" TargetControlID="Parent1" ..../>
<asp:DropDownList ID="Parent2" runat="server"/>
<ajaxToolkit:CascadingDropDown ID="CCDParent2" runat="server" ParentControlID="Parent1" TargetControlID="Parent2" ..../>
and this is what I need.
<asp:DropDownList ID="Child" runat="server"/>
<ajaxToolkit:CascadingDropDown ID="CCDChild" runat="server" ParentControlID="Parent1 and Parent2" TargetControlID="Child" ..../>
有可能吗?怎么样?
由于