[ASP.NET MVC] ASP.NET MVC 初探(二)
Introduction
這篇探討 MVC 之 Url Routing 機制,如何將 Browser 傳來的 Request 對應到 Controller 與 Action(動作)。
詳細影片介紹請參考
Examples
首先 Global.asax 檔案,可看出 Request 對應到的是 Controller ,再由 Controller 決定使用哪個 Action(動作)
若是只輸入 http://localhost:27434/ (假設),則會自動帶出 Home(Controller) 並且預設是 Index 這個 Action,如圖
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
利用這個機制,練習一下,首先我們新增一個 Controller (Product),並且撰寫程式碼
再來新增 ShowDetails Action,並且撰寫程式碼
最後我們來看一下網頁結果
三小俠 小弟獻醜,歡迎指教