在我的代码中运行的本地回发没有发生在按钮触发点击上,但当我运行生产url并点击按钮完成回发occurs.How来处理IE11,IE10中的页面回发时,在所有其他浏览器中它都工作得很好,没有回发页面。
发布于 2014-05-07 19:40:55
将所有控件保留在更新面板中
<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>https://stackoverflow.com/questions/23515171
复制相似问题