Almost all MVC Web applications allow users to navigate from one View to another, usually relying on including links in the first View which eventually targets the action method that generates the second. Using simple anchor HTML elements “a” and… Read More ›
RegisterRoutes
URL Routing in ASP.NET MVC – Part 2
This post continues our discussion on how ASP.NET MVC’s URL Routing System works. I assume you have already read Part 1 of the series cause I ‘m gonna work on the project we have created. In our MVC solution project… Read More ›
URL Routing in ASP.NET MVC – Part 1
Prior to ASP.NET MVC Framework, there was a direct relationship between requested URLs and the files on the server hard disk. For example in the Web Forms, a request such as was matched to a “Default.aspx” file on the server… Read More ›