Type in a url in the address bar to see which defined routes match it. A {*catchall} route is added to the list of routes automatically in case none of your routes match.
To generate URLs using routing, supply route values via the query string. example: http://localhost:14230/?id=123
: NO MATCH!
Key | Value |
---|
Key | Value |
---|
Matches Current Request | Url | Defaults | Constraints | DataTokens |
---|---|---|---|---|
False | Admin/{controller}/{action}/{id} | action = Index, id = UrlParameter.Optional | (empty) | Namespaces = DiverseList.Areas.Admin.*, area = Admin, UseNamespaceFallback = False |
False | {resource}.axd/{*pathInfo} | (null) | (empty) | (null) |
False | Account/{action}/{id}/ | controller = Account, action = Login, id = UrlParameter.Optional | (empty) | (empty) |
False | Listing/{action}/{name} | controller = Listing, action = Index, name = UrlParameter.Optional | (empty) | Namespaces = DiverseList.Controllers |
False | Home/{action}/{id} | controller = Home, action = Index, id = UrlParameter.Optional | (empty) | Namespaces = DiverseList.Controllers |
False | controller = Home, action = Index | (empty) | Namespaces = DiverseList.Controllers | |
True | {*catchall} | (null) | (null) | (null) |
Current Request Info
AppRelativeCurrentExecutionFilePath is the portion of the request that Routing acts on.
AppRelativeCurrentExecutionFilePath: ~/reset-password.html