asp.net - Dropdown list in update panel not causing selected index changed in ie8 and ie9 -


i have dropdown list in update panel. dont cause selected index changed in ie8 , ie9.

i have tried adding postback triggers , async postback trigers in designer, , in code behind.

any ideas how fix this?

here code:

<asp:scriptmanager id="scriptmanager1" runat="server"      loadscriptsbeforeui="false" viewstatemode="enabled">      </asp:scriptmanager>  <asp:updatepanel id="otonupdatepanel" runat="server" rendermode="inline"  >   <contenttemplate> bla bka     <asp:dropdownlist id="ddlorderby" runat="server" autopostback="true" causesvalidation="false"                                                     onselectedindexchanged="ddlorderby_selectedindexchanged"                                                  viewstatemode="enabled" ontextchanged="ddlorderby_selectedindexchanged">                                                <asp:listitem>datum</asp:listitem>                                                <asp:listitem value="titel"></asp:listitem>                                                <asp:listitem>sprecher</asp:listitem>                                                </asp:dropdownlist> 

and on page load:

   scriptmanager.registerasyncpostbackcontrol(this.findcontrol("ddlorderby")); 


Comments

Popular posts from this blog

php - Why I am getting the Error "Commands out of sync; you can't run this command now" -

linux - Does gcc have any options to add version info in ELF binary file? -

java - Are there any classes that implement javax.persistence.Parameter<T>? -