Eng | Rus
 
Education -> Solutions -> Redirect parent page
 
 
 
Simple Seo Solutions
SEO and Promotion
sites
VoiceNotebook.com
Speech to text for AndroidAndroid speech to text

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);
© prjsoft.ru