目前我使用下面的脚本来触发更新面板:
var updatePanelID = 'updatePnl';
__doPostBack(updatePanelID, 'UPDATE');
它在Chrome,firefox上工作正常,但是当谈到IE时,会出现以下错误:
JavaScript runtime error: Accessing the 'caller' property of a function or arguments object is not allowed in strict mode
下面是我的Html标题:
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="x-ua-compatible" content="IE=Edge" />
如何解决这个问题?
答案 0 :(得分:0)
我有一个解决这个问题的方法:
我在页面底部创建了一个刷新按钮,并将按钮关联到更新面板,每当我需要触发更新面板时,我都会使用
deletedPkQuery