Aditya Patil

Aditya Patil

  • NA
  • 535
  • 130.9k

Pass multiple values between 2 pages WIndows Phone app

Jul 25 2014 2:34 AM
string Title = s.title;
string Magnitude = s.magnitude;
string Location = s.location;
string Depth = s.depth;
string latitude = s.latitude;
string Longitude = s.longitude;
string DT = s.date_time;
string url = s.link;

NavigationService.Navigate(new Uri("/Detailed.xaml?Title="+Title "&Magnitude="+Magnitude,UriKind.Relative));

I want to navigate all string values to next Windows Phone application, How I can pass?
And How I can access the values on next page? I was successful for only Title but how to pass all values to next page and show there?

Answers (1)