0

我使用这个登录控制器:

public ActionResult Index(LoginModel model)
    {
      if (model.usernam == "usernam" && model.password == "password")
            {
                    return RedirectToAction("Index", "Home");
                }

        return View();

    }

此 RedirectToAction 返回此异常:路由表中没有路由与提供的值匹配。在我的 Globa.asax 中,我有这个值,我认为它可以解决问题,但我不知道如何

public static void RegisterRoutes(RouteCollection routes)
    {
        routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

        routes.MapRoute(
            "Default", // Route name
            "{controller}/{action}/{id}/{id1}/", // URL with parameters
            new { controller = "Home", action = "Index", id = UrlParameter.Optional, id1= UrlParameter.Optional} // Parameter defaults
        );

    }

我在网上搜索了很多建议,但没有任何效果。这个有什么解决办法吗??

4

1 回答 1

1
public static void RegisterRoutes(RouteCollection routes)
{
    routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

    routes.MapRoute(
        "Default", // Route name
        "{controller}/{action}/{id}/{id1}/", // URL with parameters
        new { controller = "Home", 
              action     = "Index", 
              id         =  UrlParameter.Optional, 
              id1        =  UrlParameter.Optional 
            } // Parameter defaults
    );

    routes.MapRoute(
        "Default", // Route name
        "{controller}/{action}", // URL with parameters
        new { controller = "Home", action = "Index" } // Parameter defaults
    );
}

如果您注意上面的代码,您会错过没有参数的默认路由。

于 2013-06-13T21:35:35.130 回答