Возвращает следующее "/ Настройки"
Url.Action("Index", "Settings");
На моем локальном это хорошо.Однако на моей удаленной машине я получаю ошибку ниже.У меня складывается впечатление, что контроллер не создан должным образом.
Parser Error Message: Could not load type 'System.Web.Mvc.ViewPage<EStore.Domain.ViewModel.SettingsViewModel>'.
Line 1: <%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<EStore.Domain.ViewModel.SettingsViewModel>" %>
Global.asax
routes.MapRoute(
"Default",
"{controller}/{action}/{id}",
new { controller = "Home", action = "Index", id = "" }
);
routes.MapRoute(
"AdminCompany",
"{controller}/{action}/{companyId}/{id}",
new { controller = "Home", action = "Index", companyId = "", id = "" }
);
routes.MapRoute(
"Status",
"{controller}/{action}/{id}/{statusId}",
new { controller = "Home", action = "Index", id = "", statusId = ""}
);
routes.MapRoute(
"Admin",
"admin/{controller}/{action}/{id}",
new { controller = "Home", action = "Index", id = "" }
);
Действия по индексам
public ActionResult Index()
{
var viewModel = IndexViewModel();
return View(viewModel);
}