0

I saw some previous post about this but i still don't understand. I have Three pages and i need to add all the user input IE car1, car2 , car3, and on the third page display a message of the totals. I would greatly appreciate any assistance. So to Recap i would need to add both values from the input on the two pages and display the total on the third.

Kara
  • 6,115
  • 16
  • 50
  • 57
  • how are you navigating between the pages? User inputs some details on Page1, then he navigates to Page2, enters some details and then navigates to Page3? – Saurabh Jul 11 '13 at 04:27
  • NavigationService.Navigate(new Uri("/Page1.xaml", UriKind.Relative)); So its like this i have two players. and i have 8 textboxes for each player for each page. on the last page i have a results that i need to grab the totals from the 1st and 2nd page. – Eric MacDonald Jul 11 '13 at 13:20
  • @EricMacDonald take a look at these threads http://stackoverflow.com/questions/14691899 http://stackoverflow.com/questions/7194993 – Kulasangar Jun 18 '14 at 13:20

1 Answers1

0

The only way out it seems is using IsolatedStorage to store those values in the textboxes. Since there is not a huge amount of data you need to store, you can have a look at that. You can read up about it over here and about its usage over here

Saurabh
  • 1,055
  • 14
  • 38