About Routing
Routing is the process which is used for transmitting and routing IP packets data over the Internet between two or more nodes and the main basic idea of Routing is to define the best rout to traveling the data packets in efficiently way. Packet Routing techniques and processes on external networks or those that are hosted or Internet enabled. It utilizes IP-based networks, But mainly those which are publicly accessible such as that of ISPs. The Router is connected to at least two networks and decides which way to send each information packet based on its current understanding of the state of the networks it is connected to. A Router is located at any gateway where one network meets another, including each point-of-presence on the Internet. A Router is often included as part of a network switch. Routing is a function associated with the Network layer 3 in the standard model of network programming, the Open Systems Interconnection (OSI) model. A layer-3 switch is a switch that can perform routing functions.
Related resources for Routing
  • Advanced Routing Mechanisms in Angular7/22/2024 8:38:29 AM. Enhance your Angular app with advanced routing features like lazy loading, route guards, and nested routes. Lazy loading defers component loading to reduce initial load times, while route guards manag
  • Setting Up a Basic React Application with Routing7/1/2024 6:40:41 AM. Learn to build a React app with routing using react-router-dom. Set up a structured folder layout, define routes in Main.js, integrate components in App.js with BrowserRouter, and configure the entry
  • Beginner's Guide to useNavigate() Hook in ReactJS6/28/2024 8:47:03 AM. Discover how to use the useNavigate hook in ReactJS with this beginner's guide. Learn to navigate programmatically within your React application using the useNavigate hook, part of React Router v6
  • Routing in react js for Begineers6/28/2024 5:05:49 AM. Routing in React JS for Beginners" is a comprehensive guide designed to introduce newcomers to the fundamentals of routing in React. Learn how to set up React Router, navigate between components,
  • Type-Safe Routing in React with React Router and TypeScript6/25/2024 4:54:16 AM. This insightful guide by Ziggy Rafiq explains how React Router and TypeScript can be used to achieve type-safe routing in React applications. Set up static routes using TypeScript's robust type sy
  • Understanding Eager Loading vs Lazy Loading in Angular6/20/2024 6:45:53 AM. Explore the impact of eager and lazy loading in Angular development on performance and user experience. Understand the benefits and implementations of both approaches. Eager loading simplifies navigat
  • Conventional Routing VS Attribute Routing5/28/2024 7:25:07 AM. Learn about ASP.NET MVC routing, including attribute routing, route table management, default and custom routes, route constraints, order properties, and route names. Understand the purpose of Ignore
  • MVC Architecture And Its Pipeline5/27/2024 12:02:19 PM. MVC Architecture organizes applications into Model, View, and Controller components, each serving distinct roles. The MVC pipeline manages requests, routing them through controllers to interact with m
  • Implementing Lazy Loading in Angular5/24/2024 6:06:21 AM. Implementing lazy loading in Angular enhances performance by loading modules, components, or routes only when needed. This step-by-step guide offers a real-world example, detailing how to optimize Ang
  • RESTful Day #4: Custom URL Re-Writing/Routing Using Attribute Routes in MVC 4 Web APIs5/24/2024 4:58:26 AM. In Day #4 of your RESTful journey, delve into the power of custom URL re-writing and routing using attribute routes in MVC 4 Web APIs. Unleash the flexibility of tailored endpoints, optimizing your AP
  • Introduction To ActionResult Method in MVC5/16/2024 8:30:49 AM. ActionResult in MVC determines the type of response sent to the client. It facilitates rendering views, redirecting, returning JSON or content, and handling file downloads, enhancing the flexibility a
  • Introduction To FriendlyUrls in ASP.Net5/8/2024 9:54:00 AM. Learn the fundamentals of Friendly URLs in ASP.NET, exploring routing techniques for creating clean, user-friendly URLs. Discover how to configure routing in MVC applications, implement URL rewriting
  • REST Service in ASP.NET Web API5/8/2024 9:50:41 AM. Learn to build RESTful services with ASP.NET Web API. Explore HTTP methods, routing, JSON serialization, DTOs, attribute routing, content negotiation, and error handling for robust APIs. Dive into pra
  • Pass Multiple Parameters in URL in Web API4/29/2024 10:02:24 AM. Learn how to efficiently pass multiple parameters in URLs when developing ASP.NET Web API applications. Explore techniques such as using query parameters, route parameters, and model binding to handle
  • What is Global Traffic Manager (GTM) in Alibaba Cloud ?4/27/2024 4:01:52 AM. Unleash global application reach & peak performance with Alibaba Cloud GTM! Explore intelligent traffic routing, geo-redundancy & disaster recovery for seamless user experience & business
  • ASP.NET Web API CRUD Operations4/23/2024 7:28:31 AM. ASP.NET Web API facilitates Create, Read, Update, and Delete (CRUD) operations over HTTP. Utilizing HTTP methods like GET, POST, PUT, and DELETE, it interacts with data using JSON/XML serialization.
  • Overview Of Routing And Navigation In Angular4/16/2024 6:46:58 AM. In this article we are going to learn the use of routing in angular. In any general application there are multiple views and to perform the navigation from one view to another we required routing. Rou
  • Single Page Applications with AngularJS in .NET: Part 24/16/2024 6:33:03 AM. Part 2 of Single Page Applications with AngularJS in .NET delves deeper into building dynamic web experiences. Explore advanced AngularJS concepts like routing, components, and data binding, integrati
  • Convention Routing in ASP.NET MVC 54/15/2024 11:43:49 AM. Learn how to leverage convention-based routing in ASP.NET MVC 5 for efficient URL routing. Explore the principles of MVC routing, configure route attributes, and understand controller actions.
  • CRUD Operation Using Angular And Web API4/15/2024 11:11:52 AM. Learn to implement CRUD operations in Angular using WebApi. This article guides you through creating components, routing, models, and handling HTTP requests. Prerequisites include basic Angular and We
  • Create a Single Page App in SPFx using React Router Dom4/11/2024 10:29:04 AM. Create a Single Page App in SPFx using React Router Dom, Learn to develop dynamic and responsive web applications in SharePoint Framework (SPFx) using React Router Dom for client-side navigation.
  • Attribute Routing in ASP.Net MVC 5.04/2/2024 9:14:50 AM. This article introduces Attribute routing in ASP.Net MVC 5.0 and offers a powerful way to define routes directly within controller actions using attributes, enhancing control over URL patterns and rou
  • ASP.Net MVC Controller4/2/2024 9:11:26 AM. This article elucidates controllers, actions, and routing in ASP.NET MVC. It clarifies how user requests are handled by controllers, invoking specific actions based on URLs. It emphasizes the signific
  • Explain Route Constraints in MVC4/1/2024 8:25:20 AM. Route constraints in MVC define rules for matching incoming URLs to route templates, enhancing control over routing behavior. They specify conditions like data type, length, or regular expressions, en
  • What Are Areas in ASP.Net MVC - Part 64/1/2024 8:18:29 AM. Discover the intricacies of ASP.NET MVC Areas in the sixth installment of our series. Explore how Areas facilitate modularization and organization in MVC applications, optimizing code structure for sc
  • Attribute Based Routing In ASP.NET MVC 54/1/2024 8:15:42 AM. Explore ASP.NET MVC 5's attribute-based routing, offering debugging ease, decoupling benefits, and flexible route configuration. Learn to optimize routing with RoutePrefix, Route Constraints, and
  • Brief Introduction to MVC34/1/2024 6:58:40 AM. MVC3, or Model-View-Controller version 3, is a web development framework by Microsoft, emphasizing separation of concerns. It divides applications into model, view, and controller layers, enhancing ma
  • Routing In MVC with Code Example4/1/2024 6:57:47 AM. MVC applications rely on a routing system to handle URL requests, mapping them to controllers and actions. RouteConfig.cs defines routes, connected to Global.asax.cs. Routes can be added via RouteColl
  • ASP.NET MVC with Action Filters4/1/2024 6:30:02 AM. In this article, we will learn how to enhance your ASP.NET MVC applications with Action Filters. Action Filters provide a powerful mechanism for injecting cross-cutting concerns such as logging, authe
  • Routing to Controller Actions in ASP.NET Core3/30/2024 8:47:24 AM. In ASP.NET Core, routing plays a pivotal role in directing incoming HTTP requests to the appropriate controller actions, enabling developers to build powerful and structured web applications.
  • Working With Areas In ASP.NET Core 3.13/18/2024 11:59:50 AM. Learn how to create and manage areas in ASP.NET Core 3.1 MVC applications. Areas help organize modules, enable separate routing, and allow multiple controllers and views with the same names. Follow st
  • Establish a Routing Rule for Customer Service Entity Records2/20/2024 7:11:26 AM. Routing rules in Customer Service streamline the process of directing cases to appropriate agents or queues automatically, eliminating the need for manual intervention. These rules also facilitate the
  • Master Advanced Angular Techniques for Skillful Development2/12/2024 10:59:50 AM. Explore advanced Angular techniques and elevate your development skills with this comprehensive guide. Delve into topics such as lazy loading modules, dynamic component creation, and advanced routing
  • What Are Interceptors in C# 122/7/2024 6:54:49 AM. C# 12's experimental Interceptors let you reroute method calls during compilation. Think of them as "code detours" for specific methods, allowing modifications without directly changing
  • Steps to Implement Title Service in Angular Application2/5/2024 7:40:55 AM. This article explains steps to set the page title using the title service in Angular apps using an example. The title service allows to change the HTML title of the application with ease.
  • Routing to Controller Actions in ASP.NET Core MVC1/30/2024 4:15:10 AM. In ASP.NET Core, routing to controller actions is facilitated through attributes that define route templates, mapping incoming HTTP requests to specific actions. Multiple conventional routes can be es
  • Vue.js v2: A Guide with Components, Reactivity, Routing, and Transitions1/21/2024 1:14:56 PM. Vue.js version 2 brought significant improvements and features. In this part of the tutorial, we will delve into some essential aspects and provide examples for each.
  • React Router: Seamless Navigation in Your React Applications12/27/2023 7:37:34 AM. Discover the versatility of React Router, offering dynamic routes, nested navigation, lazy loading, and route guards for enhanced single-page applications.
  • Angular Routing And Its Essentials 12/8/2023 5:17:21 AM. Angular's routing system is a powerful tool for creating seamless single-page applications. This comprehensive guide explores its fundamentals, setup, features, and practical applications through
  • Routing In ASP.NET And ASP.NET MVC With Example11/17/2023 5:54:40 AM. In this article we will learn Routing (url Rewrite) in ASP.NET and ASP.NET MVC with example. Also learn how to enable Attribute Routing.
  • How To Use Query Parameters In Angular11/15/2023 11:26:44 AM. In this tutorial, we'll be looking at Query Parameters feature in Angular which lets you pass data from one route to another.
  • What is an API Gateway and What are the Functionalities of the API Gateway?11/12/2023 8:58:35 AM. This article explains the overview of API Gateways and their key functionalities are well-structured and informative. It covers the fundamental concepts, roles, and capabilities of API Gateways in a w
  • ASP.NET Core MVC Request Life Cycle10/30/2023 5:25:03 AM. In this article you will learn about description of various stages of ASP.NET Core MVC Request Life Cycle.
  • NSX-T 4.0 Features and Updates: Revolutionizing Network Virtualization and Security10/20/2023 10:11:46 AM. This article introduces readers to VMware NSX-T 4.0, explores its key features and updates, and provides examples of how it impacts network virtualization and security. You can further expand on each
  • Routing in ASP.NET Core9/18/2023 6:04:20 AM. In this article, we delve into ASP.NET Core routing, a fundamental component of web applications. Routing determines how incoming requests are matched to specific actions and controllers, playing a pi
  • ASP.NET Core Routing Attributes7/30/2023 5:37:33 AM. Routing in ASP.NET Core is the process of mapping incoming requests to application logic that resides in controllers and methods. In this article, we will cover ASP.NET Core Routing Attributes.
  • Routing In Azure Function 7/19/2023 9:26:21 AM. This article talks about routing options available in Azure function.
  • Routing in Angular7/16/2023 5:31:37 AM. This article will discuss What is Angular, What is Routing, Benefits of Routing, Routing in Angular, and Routing examples.
  • How To Set Up Routing In An Angular Application3/6/2023 4:53:58 AM. In this article, you will learn how to set up routing in an Angular application.
  • Routing And Navigation With GetX In Flutter2/20/2023 11:25:48 AM. In Flutter applications, managing navigation between screens is one of the most important parts of creating a great user experience. To handle navigation and routing, Flutter provides a built-in Navig
  • How To Handle Event Handling And Routing In React2/7/2023 10:32:24 AM. In this article, you will learn how to handle Event Handling and Routing in React.
  • Understanding Routing In Angular2/2/2023 10:45:09 AM. In this article, you will learn about routing in Angular.
  • Routing In React12/21/2022 6:02:00 AM. In this series, we are discussing basic react js concepts. This article is about react routing and how to use routing in react applications.
  • Introduction To Routing In Vue.js12/12/2022 6:56:05 AM. In this article, you will learn Routing In Vue.js. Routing is a mechanism to redirect the users from one page to another page, and provides the navigation from one page to another page.
  • Routing In Blazor10/31/2022 7:11:40 AM. Everything you need to know about routing in blazor.
  • Routing Blob Storage Events Using Azure Event Grid5/23/2022 4:52:39 PM. In this article, we'll learn to route blob storage events with Azure Event Grid.
  • CURD Operation Using KendoUI In Angular With .NET Core API Using Dapper And Angular Routing4/7/2022 9:07:46 AM. In this article, you will learn how to perform curd operation using kendoui in angular with .net core api using dapper and angular routing.
  • How To Bind KendoUI Grid In Angular With .NET Core API With Multilayer Architecture And Angular Routing4/1/2022 5:13:16 AM. In this article, you will learn how to bind kendoui grid in angular with .net core api with multilayer architecture and angular routing.
  • Overview Of Azure Traffic Manager And Configuring Priority Based Endpoints2/10/2022 9:05:38 AM. In this article, you will learn about Azure Traffic Manager and Configuring Priority Based Endpoints Step By Step.
  • URL Creation Fundamentals In MVC 11/7/2021 5:35:23 AM. In this article, we are going to explore different ways of URL creation in MVC and different fundamental concepts of MVC.
  • ReactJS Routing9/13/2021 1:05:42 PM. In this article, you will learn about ReactJS routing.
  • Azure Traffic Manager7/28/2021 4:16:42 AM. In this article, you will learn about Azure Traffic Manager with Demo.
  • ASP.NET MVC 5: REST Web API Routing With Different Names7/18/2021 4:35:23 AM. In this article you will learn about REST Web API Routing with different names in ASP.NET MVC 5.
  • Attribute Routing in Web API 25/26/2021 11:08:49 AM. This article explains Attribute Routing in Web API 2 and the necessity of it.
  • Getting Started With ASP.Net Web API 2 : Day 125/24/2021 10:28:39 AM. In this article and future articles we will be learning the Web API routing mechanism.
  • Routing In Vue.js5/20/2021 8:49:46 PM. In this article, we will learn about routing in Vue.js. We will learn from the beginning, i.e., how to set up an Vue.js in visual studio code from the beginning.
  • URL Routing in MVC45/5/2021 9:22:12 AM. We’ll try to demonstrate how the routing works in a MVC4 application. For this we’ll take an example.
  • Attribute Routing and Parameters in MVC54/23/2021 10:08:34 AM. In this article, we will learn one of the interesting features of MVC5, attribute routing.
  • Routing Constrains With Attribute Routing in MVC 5.04/22/2021 9:24:17 AM. In this article, I will demonstrate how to use Routing Constrains with Attribute Routing in MVC.
  • Learn Angular Step By Step In Easy Way(URL Routing In Angular)4/8/2021 8:41:21 AM. In this article we will learn how to do url routing in Angular 2 and above version. When we talk about url routing it means redirecting from one page to another page.
  • Create REST Services With Attribute Routing in Web API24/6/2021 10:12:45 AM. This article explains the Representational State Transfer (REST) services with the attribute routing.
  • Brief Introduction To Attribue Routing In Web API24/6/2021 6:00:26 AM. This article explains the brief description of the Attribute routing in Web API2.
  • Routing and Action Selection in ASP.Net Web API4/2/2021 11:05:09 AM. This article is about routing and action selection in the ASP.NET Web API.
  • Redirecting Traffic Based On Priority Using Azure Traffic Manager4/2/2021 4:23:18 AM. This video provides brief introduction of what Azure Traffic Manager is, what are it's benefits, what all traffic managing methods are available along with practical usage of Priority based DNS ro
  • Redirecting Traffic Based On Priority Using Azure Traffic Manager3/31/2021 4:54:41 AM. This article provides brief introduction of what Azure Traffic Manager is, what are it's benefits, what all traffic managing methods are available along with practical usage of Priority based DNS
  • Remove Ambiguty of Controller Names in MVC Application3/26/2021 7:10:57 AM. In this article, I am sharing my thoughts of how to create a routing system in a MVC application and the terminology being used.
  • Routing in MVC3 Application3/24/2021 6:08:56 AM. In this article, I am sharing my thoughts on to create a routing system in an MVC application and the terminology being used.
  • Routing in ASP.NET Web API3/17/2021 10:56:15 AM. In this article, we will define how the ASP.Net Web API transfers the HTTP request to the controller.
  • Attribute Routing in ASP.Net Web API3/12/2021 8:50:09 AM. This article provides a simple example of attribute routing in the Web API.
  • URL Routing in ASP.Net 4.02/15/2021 11:54:12 AM. URL Routing is the process of intercepting an incoming Web request and automatically redirecting it to a different URL. This article discusses the various techniques for implementing URL Routing.
  • Custom Route Constraints in ASP.Net MVC 51/28/2021 6:13:24 AM. This article describes Custom Route Constraints in ASP.Net MVC 5 with parameter constraints by placing a constraint name after the parameter name separated by a colon.
  • Routing in ASP.Net Web Form Application11/23/2020 10:36:24 PM. Let’s explain routing in a few lines. The fact should be clear, this article is not dedicated to the basics of routing and its various forms but we will implement the concept of routing in Web Form ap
  • ASP.NET Core 2.0 MVC Routing11/23/2020 4:05:21 AM. Routing in ASP.NET Core MVC is the mechanism through which incoming requests are mapped to controllers and their actions. This is achieved by adding Routing middleware to the pipeline and using IRoute
  • Routing In Blazor11/3/2020 6:46:09 AM. A Route is a URL pattern and Routing is a pattern matching process that monitors the requests and determines what to do with each request.
  • Routing in MVC9/24/2020 9:22:08 PM. This article explains routing in ASP.Net MVC. ASP.NET MVC routing is a pattern matching system that is responsible for mapping incoming browser requests to specified MVC controller actions.
  • Routing in Azure Functions9/10/2020 5:39:43 AM. Routing is a way using which HTTP requests are mapped to the code that handles them.In this video, We are going to create a azure function using visual studio 2019. Then play around with azure functio
  • Introduction To Routing In Angular6/6/2020 10:41:55 AM. In this article, you will learn about Routing through the application in Angular.
  • Difference Between Bubbling And Tunneling Routing Events In WPF With An Example5/26/2020 8:51:49 AM. This article explains how bubbling events are different from tunneling events in WPF.
  • Introduction to MVC 5 | ASP.NET MVC 5 Tutorial For Beginners In .NET C#5/26/2020 1:09:28 AM. In this video, we learn the basics of ASP.NET MVC 5 like - what are model, view, and controller in MVC.
  • JWT Token Routing From Gateway To Multiple Micro-Services In .NET Core 5/21/2020 6:01:29 AM. This article covers exposing a central gateway point to the outer world to access protected API content. The handling of different micro-service routing will be done by Gateway itself.
  • What Is NSX Logical Switching And NSX Logical Routing?5/19/2020 9:03:43 PM. In this article, you will learn about NSX Logical Switching And NSX Logical Routing.
  • Routing In ReactJS4/15/2020 9:03:19 AM. In this article, you will learn about Routing in ReactJS.
  • How To Configure Message Routing With IoT Hub - Part One4/15/2020 12:48:48 AM. In this article, we are going to see how to configure message routing with Azure IoT Hub. Here, we will route a message to a storage account.
  • Angular Routing With Navigation4/14/2020 1:40:23 PM. In this article, I talk about Angular and navigation, by which you navigate from one page to another.
  • Authguard Angular Implementation Explained1/29/2020 6:25:31 PM. In this article, you will learn about implementation of Authguard in Angular .
  • Learn Angular 8 Step By Step In 10 Days - Route or Component Navigation - Day Ten1/28/2020 8:14:07 PM. In this article series, we are discussing issues related to different concepts of Angular 8. In this article, we will discuss about the route and its different approaches.
  • Learn Routing In Angular 811/25/2019 11:11:59 AM. With the help of routing, we can navigate from one component to another component (i.e), we can navigate from one page to another page.
  • Introduction to Routing in React11/15/2019 12:44:32 AM. This article talks about routing in ReactJs, and how sub routing can be implemented as well.
  • Introduction To Routing In Angular 810/14/2019 9:23:01 AM. In this article we'll discuss about angular 8 routing and navigation.
  • New Features of WCF 4.0: Part III9/26/2019 5:01:49 AM. In this series of articles, I want to talk about the new features in the area of Windows Communication Foundation (WCF) in order to improve the development experience, enable more communication scenar