RadWindow を使用して aspx ページからポップアップ ウィンドウを開きます。ポップアップ ウィンドウを閉じると、親の aspx ページが再読み込みされます。私は多くのことを試しましたが、私の場合はうまくいきませんでした。私が試した最新のものはこれです
$(window).unload(function () {
RefreshParentPage();
});
function RefreshParentPage() {
top.location.Reload();
}