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