私はこの2つのルートを持っています。asp mvcルーティング問題
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}",
new { controller = "Home", action = "Index", id = UrlParameter.Optional });
routes.MapRoute(
"Paging", // Route name
"{controller}/{action}/p{currentPage}",
new { controller = "Home", action = "Index" },
new { currentPage = "\\d+" });
このURLは最初のルートに行くのはなぜ私がこのコントローラー
public class MyController
{
public ActionResult All(int currentPage = 1)
{
// some code executed here
return View(pList);
}
}
は/マイ/すべて/ P5
誰かがルートについての良いチュートリアルに私を指すことができていますか?彼らが登録されているのと同じ順序で処理されているよう
あなたは説明を言い換えて質問者を助けることができますか? –
どういう意味ですか?彼は良いチュートリアルを頼んだので、私はルーティングについて知る良い場所を指摘しました。 –