W
Wannabe
The following used to update a parent page:
ClientScript.RegisterStartupScript(typeof(Page), "ReloadParent",
"window.opener.location.href = 'ProjectOverview.aspx?projectID=" +
Request.QueryString.Get("projectID") + "';", true);
I added some Ajax, using the Ajax Toolkit, to the page, and now the script
does not update the parent. Is there a better way to update a parent page
than what I have above that will work with Ajax?
ClientScript.RegisterStartupScript(typeof(Page), "ReloadParent",
"window.opener.location.href = 'ProjectOverview.aspx?projectID=" +
Request.QueryString.Get("projectID") + "';", true);
I added some Ajax, using the Ajax Toolkit, to the page, and now the script
does not update the parent. Is there a better way to update a parent page
than what I have above that will work with Ajax?