Passing a string between pages in Windows Phone 8
I need to pass a simple string between two pages in Windows Phone 8. I've been searching around, trying to find the best way of doing it - but the ones i tried turned out to not work as they should - so i ask you: What is the best way to pass a simple string between two pages in Windows Phone 8. This is the method I use to navigate to the other page: NavigationService.Navigate(new Uri("/newpage.xaml", Urikind.Relative)); For a string variable, it's easiest to use a query string parameter: NavigationService.Navigate(new Uri("/newpage.xaml?key=value", Urikind.Relative)); Pick it up on the target