Part 2 How are the URL's mapped to Controller Action Methods? The answer is ASP.NET Routing.Notice that in Global.asax we have RegisterRoutes(). and press F12 go to the defination of this Method. ASP.NET MVC will automatically pass any query string o…
Part 1 some difference from asp.net to asp.net mvc4 In MVC URL's are mapped to controller Action Methods In a WebForms URL's are mapped to Physical Files Please Note:Functon in a controller are generally called as controller Action Methods…