Добрый день!
У меня есть следующая ссылка:
<%: Url.Action(MVC.Areas.Manage.Feedback.Index()) %>
И он генерируется как /Manage/feedback
. Имена действий и контроллеров указаны строчными буквами, а название области - нет.
Я использую последнюю версию T4MVC 2.6.43 с такими настройками:
// Choose whether you want to include an 'Areas' token when referring to areas.
// e.g. Assume the Area is called Blog and the Controller is Post:
// - When false use MVC.Blog.Post.etc...
// - When true use MVC.Areas.Blog.Post.etc...
static bool IncludeAreasToken = true;
// If true, use lower case tokens in routes for the area, controller and action names
static bool UseLowercaseRoutes = true;
Заранее спасибо!