我有一个代码,我已经放入,似乎在IE11中不起作用。有人可以帮帮我吗?
我在VS2005中工作,并且click事件未在localhost中触发。我尝试了以下修复程序;来自microsoft(microsoft update standalone package)的hotfix和安装的.Net framework 4.5即使那时按钮事件也没有触发。
下面是我输入的代码 - 下面提到了aspx和aspx.cs行:
ASPX
<asp:Button ID="btnExcelExport" runat="server" Text="Excel" OnClick="btnExcelExport_Click" />
aspx.cs:
protected void btnExcelExport_Click(object sender, System.EventArgs e)
{
Label1.Text = "You clicked a button.";
}
答案 0 :(得分:2)
根据.NET框架的版本,这实际上是一个错误。可以从Microsoft获得补丁。
答案 1 :(得分:0)
您的代码是否包含在:
中<form id="form1" runat="server" enableviewstate="false">
<!-- postbacks and other .NET client-based functionality require a
wrapping form tag -->
</form>