0

这是我的 Global.asax ,我只想将另一种 url 格式映射到控制器和操作。

        //Matching to auctions-index-Testing
        //Why this one is not matching to auction-index
        routes.MapRoute("TestUrl", "{controller}-{action}-{name}",
            new { name = UrlParameter.Optional }
            );


        //Matching to Home/Index/1
        //Matching to Home/Index
        routes.MapRoute(
            name: "Default",
            url: "{controller}/{action}/{id}",
            defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
        );

我想知道为什么拍卖索引给我“找不到资源错误”。名称是可选的,它是表中的第一个条目。所以它应该与URL匹配

任何帮助和建议将不胜感激

4

1 回答 1

1

试试这个::

routes.MapRoute("TestUrl", "{controller}-{action}-{name}",
    new { controller = "auctions", 
          action = "index", 
          name = UrlParameter.Optional }
);

希望这会有所帮助!

于 2013-06-16T04:54:44.247 回答