Can't Find Route Name In Route Collection
Come to find out that this is due to MVC 4 and that all custom routing is located in the App_Start folder within the RouteConfig.cs file. When I opened up Global.asax.cs there was no RegisterRoutes method so I added it myself and added my custom routes but it did not work. Found the RouteConfig file and there it was already, the RegisterRoutes method with the defaults already setup. Added my custom route there and it works as expected.