0

我有一个带有母版页的 asp.net 应用程序。在其中一个页面中,我有一个按钮单击事件,它使用 javascript 打开另一个页面,如下所示。

string urlVerify = "VerifyEnrollmentEntries.aspx";
string fullURLVerify = "var newVerifyDataWindow = window.open('" + urlVerify +               "','_blank','height=600,width=950,status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,titlebar=no' ); 
ClientScript.RegisterStartupScript(this.Page.GetType(), "OpenWindow", fullURLVerify, true);

此弹出页面没有母版页。这只是一个独立的页面,但却是项目的一部分。当用户单击此弹出页面上的关闭按钮时,我想关闭此页面并重定向到 asp.net 中的特定页面。现在,当单击关闭按钮时,页面关闭并显示导致弹出窗口的父页面。

4

1 回答 1

1

在关闭弹出窗口之前,执行 JS 代码:

opener.location.href = "YourRedirectUrl.aspx"

它会将父级重定向到该 URL

于 2012-08-01T15:50:33.127 回答