In the previous tutorial, I have discussed what is Routing in ASP.NET Core? and how Routing Engine works in ASP.NET? and how to add custom routing in ASP.NET Core 2.0 Application. But now in this tutorial, we will discuss Attribute routing. [Read more…]
Routing in ASP.NET Core 2.0 Application
Now, in this ASP.NET Core tutorial, I will discuss Routing in ASP.NET Core. Routing basically a concept about how to send HTTP request to the right controller. If we say simply, Routing is a process of mapping a URL (Uniform Resource Locator) request to a specific controller action. Routing plays a vital role in the execution flow of ASP.NET Core application. [Read more…]