Hi,
I have two combo boxes in an aspx page.
<asp:DropDownList ID="drpCategory" runat="server"
Font-Names="Verdana" Font-Size="8pt"
Width="138px" AutoPostBack="True"
OnSelectedIndexChanged="drpCategory_SelectedIndexChanged"
OnTextChanged="drpCategory_SelectedIndexChanged">
</asp:DropDownList>
<asp:DropDownList ID="drpSubcategory" runat="server" Font-Names="Verdana" Font-Size="8pt"
Width="138px" >
</asp:DropDownList>
I need to populate the drpSubcategory depending on the value chosen from drpCategory. As you can see i've added drpCategory_SelectedIndexChanged to catch the change made by the user on the combo box.
I can see the postback happening but the code inside the drpCategory_SelectedIndexChanged is not gettine executed....Any 1 please tell me what i am doing wrong?
Regards,
JK