在IE11中,单击按钮时会发生IE10页面回发

时间:2014-05-07 10:24:09

标签: c# asp.net internet-explorer autocomplete enter

在我的代码上运行从本地回发没有发生按钮触发单击,但当我运行生产URL并单击按钮完成回发发生。如何在IE11,IE10中处理页面回发。在所有其他浏览器中它工作很好,没有页面的回发。我googled ut没有得到IE的解决方案。

1 个答案:

答案 0 :(得分:0)

将所有控件保留在更新面板中

  <form id="form1" runat="server">
    <asp:ScriptManager ID="ScriptManager1" runat="server">
    </asp:ScriptManager>
    <asp:UpdatePanel ID="UpdatePanel1" runat="server">
        <ContentTemplate>
            <div>
                <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
                <asp:Button ID="Button1" runat="server" Text="Button" />
            </div>
        </ContentTemplate>
    </asp:UpdatePanel>

</form>