Case sensitive UriMapper issue in Silverlight 3
In Navigation API of Silverlight 3 the UriMapper class is case sensitive. For the following uri mapping <nav:Frame Source="/Home"> <nav:Frame.UriMapper> <uriMapper:UriMapper> <uriMapper:UriMapping Uri="" MappedUri="/Views/HomePage.xaml"/> <uriMapper:UriMapping Uri="/entity/{code}" MappedUri="/Views/EntityEditorPage.xaml?code={code}"/> <uriMapper:UriMapping Uri="/{pageName}" MappedUri="/Views/{pageName}Page.xaml"/> </uriMapper:UriMapper> </nav:Frame.UriMapper> </nav:Frame> the "/entity/123" is correctly mapping to "/Views/EntityEditorPage.xaml?code=123" but "/Entity/123" will fail with the "