What are Routes? Routes define the structure of an url within a ASP.Net MVC. In ASP.Net MVC a url does not match a physical file on a harddisk, the url will be transformed into an controller action. Routes are defined in the global.asax file. The default...