My problem is in asp.net Button control and DropDownList.
I have a Button called ApplyButton and a DropDownList called
FilterCombo.
<asp:Button ID="ApplyButton" runat="server" Text="Apply Filter" OnClick="ApplyButton_Click" />
<asp:DropDownList ID="FilterCombo" runat="server" ></asp:DropDownList>
I want to call a method which accept a `int` as a parameter using my DropDownList's (FilterCombo)
SelectedIndex In ApplyButton's OnClick event. But
Onclick event of Button is not firing when I click on the Button. But it works if I set Button's
UseSubmitBehavior="false".
<asp:Button ID="ApplyButton" runat="server" Text="Apply Filter" OnC ...
Go to the complete details ...