次のルートがあります。単純化できると思いますが、どうすればいいのかわかりません。誰かが私にこれについていくつかのアドバイスを与えることができますか?これらのルートでid=...の理由は何ですか。メソッドにidパラメーターがない場合、これは何かを行っていますか?
context.MapRoute(
"Admin_test",
"Admin/Tests",
new { controller = "Contents", action = "Tests", id = UrlParameter.Optional }
);
context.MapRoute(
"Admin_menus",
"Admin/Menus",
new { controller = "Contents", action = "Menus", id = UrlParameter.Optional }
);
context.MapRoute(
"Admin_notes",
"Admin/Pages",
new { controller = "Contents", action = "Pages", id = UrlParameter.Optional }
);
context.MapRoute(
"Admin_cores",
"Admin/Cores",
new { controller = "Cores", action = "Cores", id = UrlParameter.Optional }
);
context.MapRoute(
"Admin_default3",
"Admin/References",
new { controller = "References", action = "References", id = UrlParameter.Optional }
);