I am opening a popup window with
var popup = window.open(\'...\', \'...\');
This javascript is defined in a control. This control is then
Try this:
window.opener.location.reload(true);
or
Into the popup before closing
window.opener.location.href = window.opener.location.href; window.close();