Getting the below error when running your Windows Phone App?
“Navigation is only supported to relative URIs that are fragments, or begin with ‘/’, or which contain ‘;component/’.rnParameter name: uri”
The solution to this error is pretty simple. Make sure that the Path used in the generation of the Uri is correct.
For example, you might be using the NavigateUri property. So while generating the Uri, you could have missed the “/” as described.
Uri path = new Uri ("MainPage1.xaml",UriKind.RelativeOrAbsolute);
This could be altered to includes /MainPage1.xaml instead of MainPage1.xaml
Uri path = new Uri ("/MainPage1.xaml",UriKind.RelativeOrAbsolute);