ASP.NET

ASP.NET is a free web framework for building great Web sites and Web applications using HTML, CSS and JavaScript.

Learn more »

Getting started

ASP.NET MVC gives you a powerful, patterns-based way to build dynamic websites that enables a clean separation of concerns and gives you full control over markup for enjoyable, agile development.

Learn more »

Get more libraries

NuGet is a free Visual Studio extension that makes it easy to add, remove, and update libraries and tools in Visual Studio projects.

Learn more »

Web Hosting

You can easily find a web hosting company that offers the right mix of features and price for your applications.

Learn more »



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

: {controller}/{action}/{id}

Route Data
KeyValue
controllerHome 
actionIndex 
Data Tokens
KeyValue

All Routes
Matches Current Request Url Defaults Constraints DataTokens
FalseUser/{controller}/{action}/{id}action = Index, id = UrlParameter.Optional(empty)Namespaces = Leadmanagement_api.Areas.User.*, area = User, UseNamespaceFallback = False
FalseMember/{controller}/{action}/{id}action = Index, id = UrlParameter.Optional(empty)Namespaces = Leadmanagement_api.Areas.Member.*, area = Member, UseNamespaceFallback = False
FalseAdmin/{controller}/{action}/{id}action = Index, id = UrlParameter.Optional(empty)Namespaces = Leadmanagement_api.Areas.Admin.*, area = Admin, UseNamespaceFallback = False
False(empty)(empty)(empty)
Falseapi/{controller}/{action}/{id}id = (empty)(null)
False{resource}.axd/{*pathInfo}(null)(empty)(null)
True{controller}/{action}/{id}controller = Home, action = Index, id = UrlParameter.Optional(empty)(empty)
True{*catchall}(null)(null)(null)

Current Request Info

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

AppRelativeCurrentExecutionFilePath: ~/