Simple Seo Solutions
SEO and Promotion sites
VoiceNotebook.com
Speech to text for Android
|
|
Refresh or Redirect parent page in Asp.Net
Lets parent "parent.aspx" page open "child.aspx" page in new window through window.open command.
So, child.aspx page can
refresh or redirect parent.aspx whith this code (c#):
string url = "mynewurl";
string js = "<script language='JavaScript'>window.opener.location = '" + Url + "';";
js += "</script>";
RegisterClientScriptBlock ("RedirectParent", js);
|
|
|
|