Support for going to a specific page is supported in Mango. The following is an example that does not require an HTTP channel, but must be executed by the background agent (and not by the application itself):
var toast = new ShellToast { Title = "Title", Content = "Toast content", NavigationUri = new Uri("/SomeOtherView.xaml", UriKind.Relative) }; toast.Show();
NOTE. NavigationUri functionality is also supported by toasts sent via HTTP push notifications.
source share