0

我仍然被 IE 10 卡住了。

在 page_load 我试图设置:

Button1.Enabled = false;

不仅适用于 IE10,在其他浏览器上也能正常工作。

编辑:

我已经更新了 ie.browser 文件。[修复大部分IE10问题]

可以做些什么来解决这个问题。请有人帮助我!

4

1 回答 1

0

@Emma

This is the source code.

<%@ Page Language="VB" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">

  Protected Sub Page_Load(sender As Object, e As System.EventArgs)
    Button1.Enabled = False
  End Sub

</script>

<html xmlns="http://www.w3.org/1999/xhtml">
  <head runat="server">
    <title></title>
  </head>
  <body>
    <form id="form1" runat="server">
      <div>
        <asp:Button ID="Button1" runat="server" Text="Button" />
      </div>
    </form>
  </body>
</html>

My Ie version:

enter image description here

enter image description here

enter image description here

于 2013-04-29T13:16:05.810 回答