我正在使用模型弹出扩展器在 iframe 中打开页面(比如 page1.aspx)。在该子页面中,再次使用模型弹出扩展器在 iframe 中打开页面(例如 page2.aspx)。现在在关闭 page2.aspx 时,我想刷新并重新加载 page1.aspx。如果我使用
ClientScript.RegisterStartupScript(this.GetType(), "RefreshParent", "setTimeout('window.parent.refresh();', 500);", true);
然后它显示错误
"Error: Object doesn't support property or method 'refresh'"
我该怎么做?