ASP.NET/VB.NET: Dropdownlist SelectedIndexChanged not firing with onchange=“javascript:return true;”
I have the following markup: <asp:DropDownList ID="dd1" AutoPostBack="true" runat="server"> <asp:ListItem Value="1">1</asp:ListItem> <asp:ListItem Value="2">2</asp:ListItem> </asp:DropDownList> <asp:DropDownList ID="dd2" AutoPostBack="true" onchange="javascript:return true;" runat="server"> <asp:ListItem Value="1">3</asp:ListItem> <asp:ListItem Value="2">4</asp:ListItem> </asp:DropDownList> Wired up to this: Protected Sub changed1(sender As Object, e As EventArgs) Handles dd1.SelectedIndexChanged End Sub Protected Sub changed2(sender As Object, e As EventArgs) Handles dd2.SelectedIndexChanged