I have one page with WebBrowser control in it. When I Navigate with NavigationService.Navigate() (next page xaml) and then back the WebBrowser control loses his web state.

How can I make the WebBrowser control not unload when navigate to other page? The solution can be put the WebBrowser control outside. I saw there is something in c#/silverlight called AdornerLayer.

Please advice/help. Thanks.

link|improve this question
Hi Ishai, haven`t tried it, but try to use the PhoneApplicationService.State Dictionary to store the webbrowser state when you navigate from it and load the state if you navigate back to it. – cordellcp3 Apr 6 '11 at 5:51
Thanks But unfortunately it's not enough for me, I don't want even reload the web page. – Ishai Apr 10 '11 at 4:45
feedback

1 Answer

If the web site is under your control, then you could use cookies to store whatever state you have, and then re-load it when the user returns. If not, and you just want to store which page the user was viewing before, then you can store the URL in PhoneApplicationPage.State and then restore it in the OnNavigatedTo override for the page.

link|improve this answer
Thanks But unfortunately it's not enough for me, I don't want even reload the web page. – Ishai Apr 10 '11 at 4:45
If you're navigating forwards to a page, and then backwards to this page with the WebBrowser control on it, the only option you have is to reload the web page. There is no way for you to cache application pages in the navigation history. – Derek Lakin Apr 10 '11 at 12:52
feedback

Your Answer

 
or
required, but never shown

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