I am having the problem. When the page loads first time, it loads 'AlbumView.xaml' in the frame. When I click on the back button, it throws the following error message:
An unhandled exception('Unhandled Error in Silverlight Application:4004' Category: ManageRuntimeError Message: System.ArgumentException: Content for the URI cannot be loaded. The URI may be invalid.
Here is the code:
<Grid Grid.Row="1" Name="Main">
<sdk:Frame Source="About" Name="MainFrame" BorderThickness="2">
<sdk:Frame.UriMapper>
<sdk:UriMapper>
<sdk:UriMapping
Uri="About"
MappedUri="/Views/AlbumView.xaml"/>
<sdk:UriMapping
Uri="Categories"
MappedUri="/Views/AlbumCategoriesView.xaml"/>
</sdk:UriMapper>
</sdk:Frame.UriMapper>
</sdk:Frame>
</Grid>
Just wonder is it a known problem, or just doing smth wrong?
Cheers.