次を使用して、ページ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を更新したい。