[ASP.NET MVC] ASP.NET MVC 初探(二)

  • 2394
  • 0
  • 2010-06-14

[ASP.NET MVC] ASP.NET MVC 初探(二)

Introduction

這篇探討 MVC 之 Url Routing 機制,如何將 Browser 傳來的 Request  對應到 Controller 與 Action(動作)。

詳細影片介紹請參考

 

Examples

首先 Global.asax 檔案,可看出 Request 對應到的是 Controller ,再由 Controller 決定使用哪個  Action(動作)

2010-06-13_223453

若是只輸入 http://localhost:27434/ (假設),則會自動帶出 Home(Controller) 並且預設是 Index 這個 Action,如圖

2010-06-13_224814

 

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

利用這個機制,練習一下,首先我們新增一個 Controller (Product),並且撰寫程式碼

2010-06-13_231205

 

再來新增 ShowDetails  Action,並且撰寫程式碼

2010-06-13_225323

2010-06-13_225712

 

 

 

 

最後我們來看一下網頁結果

2010-06-13_231331

三小俠  小弟獻醜,歡迎指教