I have a dropdown list in a view belonging to a multiview control. This control is then inside an ajax update panel. My problem is that the the drop down wont call the method that handles the selected index change when the dropdown item selected is changed:
Mike55.
Code:
<asp:DropDownList ID="ddGroups" runat="server" AutoPostBack="True">
</asp:DropDownList>
Based on the group selected, get all the members assigned to that group.
Protected Sub ddGroups_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles ddGroups.SelectedIndexChanged
LoadGroupMembers()
End Sub
Mike55.