Вот и ты ....
Это для открытия всплывающего окна ....
<html>
<head>
<script type="text/javascript">
var passwordPopup;
function popUpPassword()
{
passwordPopup = window.open("ChangePassword.aspx");
window.onbeforeunload = function()
{
alert("yay I reloaded!");
window.onbeforeunload = null;
}
}
</script>
</head>
<body>
<button onclick="popUpPassword();">Popup Password Change</button>
</body>
</html>
И это для перезагрузки главной страницы и закрытия всплывающего окна ....
public partial class ChangePassword : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void SubmitPassword_Click(object sender, EventArgs e)
{
bool passwordChanged = true;
if (passwordChanged)
{
// Get a ClientScriptManager reference from the Page class.
ClientScriptManager cs = Page.ClientScript;
// Check to see if the client script is already registered.
if (!cs.IsClientScriptBlockRegistered(this.GetType(), "popUpPwScript"))
{
StringBuilder jscript = new StringBuilder();
jscript.Append("<script type=\"text/javascript\">");
jscript.Append("window.opener.location.reload(); window.close();");
jscript.Append("</script>");
cs.RegisterClientScriptBlock(this.GetType(), "popUpPwScript", jscript.ToString(), false);
}
}
else
{
//do something else
}
}
}