Posted on: 10/20/2014 7:28:21 AM | Views : 446

Hi,
I have a dropdownlist. I want whenever user selects India, it should go to the next section of the page and if it selects other than India, it should some other section. And also it should only move ahead if the checkbox is checked, Otherwise it should ask to check the checkbox first. Please see the code for your reference:-
<tr> <td> <asp:DropDownList ID="ddlCountry" runat="server" class="txtfld-popup" Width="251"> <asp:ListItem Text="Enter your Country of Residences" Value="0"></asp:ListItem> <asp:ListItem Text="India" Value="1"></asp:ListItem> <asp:ListItem Text="USA" Value="2"></asp:ListItem> ...

Go to the complete details ...