I have views with ÆØÅ in there names. If I try to navigate to one of them I get system.object instead of my view.
unity.RegisterTypeForNavigation();
public static void RegisterTypeForNavigation<T>(this IUnityContainer container)
{
container.RegisterType(typeof(object), typeof(T), typeof(T).FullName);
}
Should I escape the FullName?
Yes you should url encode the type name, fx. like this
And you also have to urlencode when you navigate.
That's it