I pass a value to a page
NavigationService.Navigate("/SportsPage.xaml?Number=5",UriKind.Relative);
the Number
value changes while user is in the page, it gets 10 for example. then he goes to another page, but after a back navigation from that page to this page, the number is still 5. like it is the first time. but I want it to be the number when the user left the page (i.e 10).
I can save it to the storage and retrieve it on navigationTo, but it is not the case.
Is it possible to return back to the page in its last state?