我问这个问题是因为我的代码具有以下内容,可以在 IE 上完美运行,但不能在任何其他浏览器上运行。Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load If Not IsPostBack Then --- my code here -- Form.DefaultButton = Button_new.UniqueID End Sub
我使用了 Button_new.ID、Button_new.ClientID 并且它完全崩溃了。这是我得到的错误 -
“System.InvalidOperationException:'form1' 的 DefaultButton 必须是 IButtonControl 类型的控件的 ID。”
我可以做些什么来使这项工作在 IE 以外的浏览器中工作?