DropDownList’s SelectedIndexChanged event not firing

I have a DropDownList object in my web page. When I click on it and select a different value, nothing happens, even though I have a function wired up to the SelectedIndexChanged event. First, the actual object’s HTML code: <asp:DropDownList ID=”logList” runat=”server” onselectedindexchanged=”itemSelected”> </asp:DropDownList> And this is that function, itemSelected: protected void itemSelected(object sender, EventArgs … Read more