【发布时间】:2013-01-17 07:53:32
【问题描述】:
我正在使用 A 页面打开一个弹出窗口 B:
this.Page.ClientScript.RegisterStartupScript(
this.GetType(),
"JavaScript",
"myWindow=window.open('B.aspx',
'WindowName',
'copyhistory=no,
width=800,
height=300,
top=150,
left=50,
resizable=1,
scrollbars=1');
myWindow.focus();",
true
);
每当弹出窗口B发生变化时,我都想刷新页面A。
【问题讨论】: