I want to pass a value like this: Black & White
between two pages. but it has a character which gives it another meaning. how to pass that value?
value = "Black & White";
NavigationService.Navigate(new Uri("/secondpage.xaml?value=" + value, UriKind.Relative));
Try applying HttpUtility.UrlEncode method to the string.