How am I going to disable my other listboxes unless the user have chose from my first listbox?
<asp:DropDownList ID="ddlLead1" runat="server">
<asp:ListItem Text="-Please Select-" Selected="True" Value="-Please Select-"/>
<asp:ListItem Text="Type 1" Value="Category 1" />
<asp:ListItem Text="Type 2" Value="Category 2" />
<asp:ListItem Text="Type 3" Value="Category 3" />
</asp:DropDownList>
<asp:DropDownList ID="ddlLead2" runat="server">
<asp:ListItem Text="-Please Select-" Selected="True" Value="-Please Select-"/>
<asp:ListItem Text="Type 1" Value="Category 1" />
<asp:ListItem Text="Type 2" Value="Category 2" />
<asp:ListItem Text="Type 3" Value="Category 3" />
</asp:DropDownList>
<asp:DropDownList ID="ddlLead3" runat="server">
<asp:ListItem Text="-Please Select-" Selected="True" Value="-Please Select-"/>
<asp:ListItem Text="Type 1" Value="Category 1" />
<asp:ListItem Text="Type 2" Value="Category 2" />
<asp:ListItem Text="Type 3" Value="Category 3" />
</asp:DropDownList>
I tried it with jquery but it isn't working. Can someone help with this?