Posted on: 5/6/2015 10:58:03 AM | Views : 683

I know there are a lot of questions about this problem here. So, nothing i have searched through has helped so I will explain the problem I am having and ways that I have tried to solve this myself.
I have created a table (bootstrap framework) with two asp.net DropDownList controls (ddlFaculty and ddlCourse), the idea is that when ddlFaculty has its index changed that will fill ddlCourse with the corresponding items through AJAX. I have looked through dev tools on chrome and only the Page_Load event is firing. So something may be catching the postback which stopps the event from firing. Even if i dont use AJAX and set AutoPostBack = "true" the event still does not fire.
Here are my two tables:
<asp:TableRow> <asp:TableCell><div class="form-group"><p>Faculty: </p></div></asp:TableCell><asp:TableCel ...

Go to the complete details ...