views:

28

answers:

1

Some pages in my app allow users to click a hyperlink to launch the external browser via a WebBrowserHelper.

I'm carefully saving the app state in OnNavigatedFrom and restoring it in OnNavigatedTo, but when the user navigates back from the web browser into my app, the app hangs, then crashes.

I've carefully followed the great blog post on the Windows Team Blog, but can also reproduce the bug using the provided code there (just add a WebBrowserTask to one of the button click events on the DetailsPage; or in fact a send SMS task).

Can anyone else confirm this bug, or perhaps point out something special that needs to be done to overcome it?

A: 

Whoops! Yes it turns out in most cases you just need to resume the debugger to have the app come back to life.

However in my case there is also a bug in my own code. As usual.

Ben Gracewood