Monday, July 11, 2011

Redirects the parent page to a loacation

The following C# code defines the JavaScript code for redirecting parent page to new location, and registers it to execute immediately upon the page being posted back the next time.

// Redirects the parent page to a loacation.
public void RedirectParentPage(string sUrl)
{
string str = string.Format("window.parent.location='{0}';", sUrl);

ClientScript.RegisterStartupScript(this.GetType(), Guid.NewGuid().ToString(), str, true);

}

No comments:

Post a Comment

Open default email app in .NET MAUI

Sample Code:  if (Email.Default.IsComposeSupported) {     string subject = "Hello!";     string body = "Excellent!";    ...