Route Debugger

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

: {namespaces}/{controller}/{action}

Route Data
KeyValue
namespacesbook 
controller1760447 
action9669 
Data Tokens
KeyValue
NamespacesSystem.String[] 

All Routes
Matches Current Request Url Defaults Constraints DataTokens
False{resource}.axd/{*pathInfo}(null)(empty)(null)
False{resource}.axd/{*pathInfo}(null)(empty)(null)
FalseSchool/{SchoolID}controller = School, action = Details, SchoolID = 0SchoolID = [\d]*Namespaces = YFPC.Controllers
FalseNews/{NewsID}controller = News, action = Details, NewsID = 0NewsID = [\d]*Namespaces = YFPC.Controllers
FalseNews/List/{ID}controller = News, action = List, ID = 0ID = [\d]*Namespaces = YFPC.Controllers
FalseBook/{BookID}controller = Book, action = Details, BookID = 0BookID = [\d]*Namespaces = YFPC.Controllers
FalseVolunteer/{ID}controller = Volunteer, action = Details, ID = 0ID = [\d]*Namespaces = YFPC.Controllers
FalseLogin/BindPhone/{Key}controller = Login, action = BindPhone, Key = 0(empty)Namespaces = YFPC.Controllers
FalseLogin/MergeUser/{Key}controller = Login, action = MergeUser, Key = 0(empty)Namespaces = YFPC.Controllers
FalseUser/MyDonate/{ID}controller = User, action = MyDonate, ID = 0ID = [\d]*Namespaces = YFPC.Controllers
FalseDonate/Pay/{SchoolID}controller = Donate, action = Pay, SchoolID = 0SchoolID = [\d]*Namespaces = YFPC.Controllers
True{namespaces}/{controller}/{action}namespaces = API(empty)Namespaces = YFPC.Controllers.API
True{controller}/{action}/{id}controller = Home, action = Index, id = UrlParameter.Optional(empty)Namespaces = YFPC.Controllers
True{*catchall}(null)(null)(null)

Current Request Info

AppRelativeCurrentExecutionFilePath is the portion of the request that Routing acts on.

AppRelativeCurrentExecutionFilePath: ~/book/1760447/9669