区域中的Mvc属性路由

时间:2017-05-28 11:02:10

标签: asp.net asp.net-mvc routing

我想在我的区域进行url路由,但它不能在我的控制器代码

find . -type f -exec tail -n 1 -- {} + | grep -EB 1 '^[^=]+A' | grep -c '^==>'

和我一样配置RouteConfig.cs;

 [RouteArea("Crooc")]
    [RoutePrefix("Home")]
    [Route("{action}")]
    public class HomeController : BaseController
    {
        HomeView mymodel = new HomeView();
        DTOCrooc _crooc = new DTOCrooc();
        GetUserInformations userInformation = new GetUserInformations();

        [Route("Default")]
        public ActionResult Index(int? page)
        {

该区域中的属性路由不起作用,但它在我的基础项目上工作

0 个答案:

没有答案