I have app which contain 5 page, end last page will be called signout so once I clicked to the signout it will remove all the pagestack and start to navigate from the page 1.
eg: page-1 MainMenu
page-2 list of Items.
page-3 which Common Sharing Options(of Facebook and twiter)
page-4 Point showing list which is highest earned point.
page-5 sign-out.
Once I clicked on Sign-out it will goes to Login Page. and Once it logged In it will redirect to me page -5.
so my question is I want to redirect to the page 2. so how I can do this.
I had tried
foreach (var journalEntry in ((PhoneApplicationFrame)Application.Current.RootVisual).BackStack) { ((PhoneApplicationFrame)Application.Current.RootVisual).RemoveBackEntry();
}
but it will not resolved my problem.
Thank you..!!