The problem
When you use the navigation framework in Silverlight, you probably also want to use an UriMapper, to shield your users from the complete path of the XAML files and the .xaml extension. Such an UriMapper could look something like this:
<uriMapper:UriMapper>
<uriMapper:UriMapping Uri="About" MappedUri="/Views/About.xaml"/>
A small bug in the navigation framework activates the browser’s back button when the user navigates to your Silverlight application for the very first time. This isn’t that bad, except for the exception when the user actually presses the back button:

A well known workaround for this problem is to change your UriMapper like this:
<uriMapper:UriMapper>
<uriMapper:UriMapping Uri="Home" MappedUri="/Views/Home.xaml"/>
<uriMapper:UriMapping Uri="About" MappedUri="/Views/About.xaml"/>
Which causes your application to navigate when the entered uri is empty, which happens when the user presses the back button of the browser when he first visits your application. While this does fix the exception in case of an empty uri, this doesn’t fix the exception that occurs when the user manipulates the uri (after the pound sign in the browser’s address bar) directly and enters an invalid one. This is where the XAML escape sequence comes into play.
The solution
What I essentially want to do is to change the UriMapper like this:
Read more: infoSupport
QR: