We have a DropDownList inside an UpdatePanel whose autopostback property is set to true. We have kept a statement in triggers that Postback is asynchronous postback, and we have the handler of the dropdown in our code behind.
There is a peculiar issue that the event is not getting fired on some machines. We have also included InitializeRequest, and there we have checked with the ID on which the postback occured. It was showing empty in one machine, and the same is working in another machine without any issue.
Is this issue a browser Issue or any other issue? We are unable to know why such kind of issue occurs as the same piece of code is working on some machines.
<asp:UpdatePanel runat="server" ID="UpdatePanel1" UpdateMode="Conditional">
<Triggers>
<asp:AsyncPostBackTrigger ControlID="DropDown1" EventName="SelectedIndexChanged" />
</Triggers>
<ContentTemplate>
<asp:DropDownList ID=" DropDown1" runat="server" AutoPostBack="true"> </asp:DropDownList>
</ContentTemplate>
</asp:UpdatePanel>
Private Sub DropDown1_SelectedIndexChanged(default args)Handles DropDown1.SelectedIndexChanged End Sub function InitializeRequest(sender,args){
if (args.get_postBackElement().id == '<%= DropDown1.ClientID %>'){ }
}