親ページasp.netのボタンをクリックしたときにjavascriptを使用して親ページを更新し、子ウィンドウを閉じる方法 親ページを更新することはできますが、子ウィンドウが閉じません。私のC#コードは
string script = @"<script>
function RefreshParent()
{
window.close();
window.opener.location.reload();
}RefreshParent();
</script>";
Page.ClientScript.RegisterStartupScript(this.GetType(), "ssr", script);