Hello.
I'm developing a Windows Phone application.
I have defined this on App.xaml:
<nav:UriMapping Uri="/Destinations" MappedUri="/Views/Tourism/Common.xaml?Type=1"/>
<nav:UriMapping Uri="/Points" MappedUri="/Views/Tourism/Common.xaml?Type=2"/>
When the user is on Points, and I do the following:
NavigationService.Navigate(new Uri("/Destinations", UriKind.Relative));
I get the error: No Fragment support right now
How can I reload the same page passing a Type 1?
NOTE: I use custom transition between pages, this the reason I'm navigating to the same page.
Thanks.