In my Windows phone application, I\'m trying to reload the application page by using the following code:
NavigationService.Navigate(new Uri(string.Format(\"/Page
try this code
var Frame = Window.Current.Content as Frame; Frame.Navigate(Frame.Content.GetType()); Frame.GoBack();
Source enter link description here