Я успешно настроил структурную карту, но каждая страница ищет контроллер с именем «scripts»
public class StructureMapControllerFactory : DefaultControllerFactory
{
public override IController CreateController(RequestContext context, string controllerName)
{
Type controllerType = base.GetControllerType(context, controllerName);
return ObjectFactory.GetInstance(controllerType) as IController;
}
}
Это происходит потому, что строка параметра ControllerName всегда приходит со строкой "scripts"