Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Route debugger for ASP.NET MVC

Is there a Route debugger for ASP.NET MVC out there? If so, where do I find it?

like image 483
amexn Avatar asked Dec 22 '09 08:12

amexn


People also ask

What is ASP.NET MVC routing?

The ASP.NET Routing module is responsible for mapping incoming browser requests to particular MVC controller actions. By the end of this tutorial, you will understand how the standard route table maps requests to controller actions.

How can add route in ASP.NET MVC?

Configure a Route Every MVC application must configure (register) at least one route configured by the MVC framework by default. You can register a route in RouteConfig class, which is in RouteConfig. cs under App_Start folder. The following figure illustrates how to configure a route in the RouteConfig class .

What is routing in MVC 5 with example?

Routing is a pattern matching system. Routing maps an incoming request (from the browser) to particular resources (controller & action method). This means routing provides the functionality to define a URL pattern that will handle the request. That is how the application matches a URI to an action.


1 Answers

Phil Haack has a route debugger on his blog.

like image 105
joshcomley Avatar answered Sep 27 '22 01:09

joshcomley