I have some property OwnerId that has each page in my application. I need these property to create HttpWebRequest and get some data. But when the application deactivated and activated again the page as deleted and created again, so these property is 0. I can't save these property in PhoneApplicationPage.State , because these property is different for different pages, so when I go twice back I can get error. I think to take it property after application activated from NavigationService.BackStack pages.But I'm not sure it is right. How can I do it ?

link|improve this question

Aram -- Not sure if the question is very clear. Could you add some sample code? – samidip Nov 7 '11 at 15:44
Also, PhoneApplicationService.Current.State should be kept intact even on Tombstoning. Each page could have access to it's own State dictionary during OnNavigatedTo/OnNavigatedFrom. – samidip Nov 7 '11 at 15:46
@samidip Sorry for my bad English, I'll try explain. Assume I have some page that displays info about user, I must have userId to show info about that user, this userId is my OwnerId, that have every page. When application deactivated my OwnerId become 0 so I can't show the information about user. I want to save the OwnerId for every instance of page that when application activated I can restore its value. – Aram Gevorgyan Nov 7 '11 at 15:52
@samidip I know it, but for every instance of the page the value of OwnerId can be different, so I can't just store in PhoneApplicatonPage.State or PhoneApplicationService.Current.State – Aram Gevorgyan Nov 7 '11 at 15:55
feedback

2 Answers

up vote 1 down vote accepted

Aram .. thanks for explaining the question better.

Now, while your application is in the foreground, how are you managing all these different OwnerIDs? A collection? I am guessing you don't have multiple instances of the same page; but rather pass query parameters along to indicate which OwnerID/UserID should be used to display appropriate user info. You could put the whole collection in State dictionaries with a key & hydrate/dehydrate during the application lifecycle. Makes sense?

Thanks!

link|improve this answer
Thanks for trying help me. Sorry I don't understand you well. Every time I post some HttpWebRequest and from the response I get OwnerId. My application besides user info ,have photos, videos and other pages,and photo page also get user photos depends on OwnerId. – Aram Gevorgyan Nov 7 '11 at 16:58
And I make requests to API, and I"ll want to do without query strings. – Aram Gevorgyan Nov 7 '11 at 17:01
feedback

I'm not 100% clear on whether you need a setting for each page or just a single setting for the app. In either case your best option (IMO) is IsolatedStorageSettings (http://msdn.microsoft.com/en-us/library/system.io.isolatedstorage.isolatedstoragesettings(v=vs.95).aspx)

If you just need a single setting then there's no problem but if you need one for each page you will need to do something ugly like using the page name as the key.

link|improve this answer
Sorry for my bad English, I'll try explain. Assume I have some page that displays info about user, I must have userId to show info about that user, this userId is my OwnerId, that have every page. When application deactivated my OwnerId become 0 so I can't show the information about user. I want to save the OwnerId for every instance of page that when application activated I can restore its value. – Aram Gevorgyan Nov 7 '11 at 15:53
Thanks for clarifying. I would either do what samidip suggested in his answer or, if you need more control, serialize all of the IDs, pages etc. into XML (this allows you to add any information you may need and is easier to deal with when you need new information in a future update). – calum Nov 7 '11 at 16:28
Please look at my comment on samidip answer. And thans for trying help me. – Aram Gevorgyan Nov 7 '11 at 16:59
If you know the ownerId before you navigate to the page that consumes it then you should just put it in the query string for the page. Then you don't need to do anything at all. If you get the Id after the page is loaded then you could do something like add a unique number to the query string of each page (just increment an integer: ?pageId=23), you can then save a dictionary of pageIds and ownerIds when tombstoning. I really think that the query string is the easiest way to identify a page instance after tombstoning. – calum Nov 8 '11 at 14:11
I get OwnerId after navigating, so I can't use query string. I think to keep a stack of OwnerId 's and every time I naveigate back, peek from the stack, and when I navigate from the page push to the stack. And save stack on PhoneApplicationServie.State. What do you think about this idea ? – Aram Gevorgyan Nov 8 '11 at 15:05
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.