TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About Route
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Shilpa Tanwar (7)
Sanwar Ranwa (6)
Viknaraj Manogararajah (5)
Saravanan Ponnusamy (4)
Manoj Kalla (4)
Tahir Ansari (3)
Mudita Rathore (3)
Sarthak Varshney (3)
Jignesh Trivedi (3)
Debasis Saha (3)
Alkesh Bijarniya (2)
Ishika Tiwari (2)
Sardar Mudassar Ali Khan (2)
Abhishek Mishra (2)
Mahesh Alle (2)
Shridhar Sharma (1)
Abhishek Saini (1)
Nikunj Satasiya (1)
Vijay Yadav (1)
Velladurai (1)
Abhishek Yadav (1)
Ziggy Rafiq (1)
Zain Ul Hassan (1)
Akhil Mittal (1)
Mohammad Irshad (1)
Madhan Thurai (1)
Sourav Kayal (1)
Bhushan Gawale (1)
Rasmita Dash (1)
Jitendra Mesavaniya (1)
Nishi Kumari (1)
Jinal Shah (1)
John Kocer (1)
Kuppu Swami (1)
Subarta Ray (1)
Keyur (1)
Simran Verma (1)
Ajay Kumar (1)
Prathap Reddy (1)
Hadshana Kamalanathan (1)
Gunasekaran Palani (1)
Kirtesh Shah (1)
Ojash Shrestha (1)
Maragatha Mani (1)
Nimit Joshi (1)
Rajeev Ranjan (1)
Sachin Kalia (1)
CSharp TV (1)
Sandeep Singh Shekhawat (1)
Ashirwad Satapathi (1)
Rithik Banerjee (1)
Rikam Palkar (1)
Kunal Patel (1)
Abhishek Yadav (1)
Haridhass Mani (1)
Gokulakrishna (1)
Priyanka Jain (1)
Vidyadharran G (1)
Faisal Pathan (1)
Ravishankar N (1)
Rajeesh Menoth (1)
Piyush Pansuriya (1)
Jesus Rodriguez (1)
Mannan (1)
Related resources for Route
No resource found
Protected Routes in React.js
10/27/2024 5:37:13 AM.
This approach is essential for apps with private content, ensuring unauthorized users can't view certain pages. By using React Router with authentication checks, developers can manage access dynam
Routers in Backbone.JS: Part 7
10/3/2024 11:31:21 AM.
Backbone.Router enables URL routing and history management for web applications. It allows creating bookmarkable, shareable URLs and mapping them to application actions. This article covers the basics
Overview of Minimal API
10/1/2024 8:20:11 AM.
Minimal API in ASP.NET Core provides a streamlined approach to building HTTP APIs with minimal configuration. Introduced in .NET 6, it allows for lightweight API development without controllers, makin
Optimizing Angular Route Guards for Performance and Security
9/4/2024 6:13:15 AM.
Angular route guards manage access control in your application, ensuring users only access authorized routes. To optimize performance and security, implement lazy loading with CanLoad, cache permissio
Different Ways to Redirect and Retrieve ID Parameters in Angular
9/2/2024 6:01:08 AM.
Angular offers various methods for navigation and parameter handling in web applications. Use the RouterLink directive for simple navigation, the Router service for programmatic control, and Activated
Share Data from Parent to Child Component in Angular 18
8/23/2024 6:25:55 AM.
Learn how to send data between Angular components using @Input and @Output decorators. This guide demonstrates how to transfer data from a parent to a child component in Angular. Create a project, set
Migrating from Next.js 14 to Next.js 15
8/8/2024 11:31:34 AM.
Upgrading from Next.js 14 to 15 involves updating dependencies, addressing breaking changes, and leveraging new features. Key steps include reviewing release notes, testing with new dependencies, adju
How to Implement Dynamic Routing in Next.js?
8/8/2024 6:18:39 AM.
Learn how to use dynamic routing in Next.js to build flexible and scalable applications. This guide covers setting up dynamic routes, nested routes, catch-all routes, and API routes. Discover how to l
Routing in React JS with TypeScript
8/8/2024 5:52:19 AM.
Routing is a crucial feature for single-page applications (SPA) as it allows navigation between different views or pages without reloading the entire application. React Router is the most popular libr
Implementing JWT Authentication in a Next.js Application
8/7/2024 11:43:29 AM.
Learn how to implement JWT authentication in a Next.js application with this step-by-step guide. Covering project setup, installing necessary packages, creating utility functions for JWT and password
Handling Authentication and Authorization in Next.js
8/7/2024 6:17:20 AM.
Authentication and authorization are crucial for securing web applications. Next.js offers several strategies and libraries to manage user authentication and authorization effectively. This guide cove
Angular 18 Create QR Code using ng-qrcode
7/31/2024 10:41:43 AM.
Learn how to create QR codes in Angular using the ng-qrcode package. This guide covers setting up an Angular project, installing ng-qrcode, and implementing QR code generation with two-way data bindin
Guide to Angular Guards
7/29/2024 8:34:55 AM.
Learn everything about Angular Guards in this comprehensive guide. Understand how to implement CanActivate, CanActivateChild, CanDeactivate, Resolve, and CanLoad guards to secure your Angular applicat
How to Implement Role-Based Access Control in Next.js?
7/24/2024 9:39:14 AM.
Implement Role-Based Access Control (RBAC) in a Next.js app to manage user permissions and restrict access based on roles. Define roles in your database, assign them during registration, and use Highe
Explain Adding a Loader in Next.js
7/24/2024 9:32:26 AM.
Adding loaders in a Next.js app enhances user experience by showing visual cues during data fetching and page transitions. Create a Loader component with CSS for styling and use it globally or locally
Advanced Routing Mechanisms in Angular
7/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
What is Incremental Static Regeneration (ISR) in Next Js.?
7/22/2024 6:13:17 AM.
"Incremental Static Regeneration (ISR) in Next.js combines static site generation with server-side rendering, allowing pages to be updated after the initial build. It uses getStaticProps with a r
Highlight Active Menu Item Dynamically in Angular based on Route
7/19/2024 6:28:54 AM.
In Angular applications, dynamically highlight active menu items based on the current route using Angular's RouterModule and routerLinkActive directive. This allows you to apply a CSS class, like
Setting Up a Basic React Application with Routing
7/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 ReactJS
6/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 Begineers
6/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 TypeScript
6/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
Various Ways Of Form Submission In ASP.NET MVC - Part One
6/14/2024 10:39:14 AM.
Learn various techniques for form submission in ASP.NET MVC. This series covers @Html.BeginForm and @Ajax.BeginForm methods, HTML5 form attributes, jQuery AJAX with FormData and serializeFormJSON. Enh
Conventional Routing VS Attribute Routing
5/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
RESTful Day #4: Custom URL Re-Writing/Routing Using Attribute Routes in MVC 4 Web APIs
5/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
Pass Multiple Parameters in URL in Web API
4/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
Overview Of Routing And Navigation In Angular
4/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
Create a Single Page App in SPFx using React Router Dom
4/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.
Configure ExpressRoute Global Reach for On-Premises Connectivity
4/4/2024 8:41:03 AM.
Learn how to set up ExpressRoute Global Reach for seamless connectivity between your on-premises network and VMware Cloud AVS Private Cloud on Microsoft Azure.
Attribute Routing in ASP.Net MVC 5.0
4/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
Introduction of Azure VMware Solution
4/2/2024 8:28:35 AM.
Learn about Azure VMware Solution: subscriptions, regions, resource groups, virtual networks, ExpressRoute, and more for efficient Azure deployments.
Explain Route Constraints in MVC
4/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
Attribute Based Routing In ASP.NET MVC 5
4/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
Learn about ASP.NET MVC Life Cycle
4/1/2024 6:28:41 AM.
Understand the MVC life cycle from HTTP request to response. Learn about ASP.NET's Page class, IHttpHandler interface, and MVC's Controller. Explore RouteTable and UrlRoutingModule for routing
Different ActionResult Types in ASP.NET MVC & Their Uses
4/1/2024 6:14:26 AM.
In this article we will learn What are the different types of ActionResult in ASP.NET MVC, and when would you use each one?
Routing to Controller Actions in ASP.NET Core
3/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.
How Do You Sync Current Route in Vuex Store in Vue.js
3/29/2024 5:40:52 AM.
Syncing the current route in Vuex involves updating the store's state with route details using Vue Router's navigation guards. This approach centralizes route management for easier access acro
Namespace for Authentication Routes in MVC and Its Importance
3/19/2024 1:18:38 PM.
The System.Web.Mvc namespace in ASP.NET MVC is crucial for authentication routes, aiding in code organization, readability, and integration with framework features for seamless authentication and auth
How to Group API Endpoints in FastAPI: Diverse Approaches
3/12/2024 6:03:34 AM.
This article explores two methods for grouping API endpoints with Fast API. Initial method employs an API Router to segregate user and item endpoints into distinct routers. The second method utilizes
Learn About Lazy Loading In Angular
3/6/2024 9:13:22 AM.
Lazy loading in Angular is a technique that defers the loading of modules until they're needed, improving initial load time. It involves configuring routes to load modules asynchronously, typicall
Detect Route Changes in Vue.js
3/6/2024 4:06:35 AM.
In Vue.js, detecting route changes is achieved through Vue Router's navigation guard, beforeEach. Import Vue Router, set it up, and use beforeEach to execute logic before each route navigation.
What Is Route-Based Code Splitting in React.js?
3/5/2024 9:46:23 AM.
Route-based code splitting in React.js enhances performance by loading only the necessary code for specific routes or pages. This technique is crucial for large applications with multiple routes, ensu
How To Create To-Do CRUD Operation With ASP.NET MVC Core, Angular 4.0
2/21/2024 10:21:43 AM.
This training session covers how to utilize the Todo in-memory database via the TodoRepository and create a custom ASP.NET MVC API controller with CRUD (Create, Read, Update, Delete) operations.
What Are Navigation Guards in Vue Router
2/8/2024 11:33:26 AM.
Vue Router offers navigation guards, functions executed before/after route navigation, enabling control over Vue.js app navigation. Global guards like beforeEach manage app-wide authentication/authori
Routing to Controller Actions in ASP.NET Core MVC
1/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
What Are Nested Routes in Vue.js
1/10/2024 9:00:03 AM.
Nested routes in Vue.js involve defining child routes within a parent route. This structuring simplifies complex user interfaces by organizing components hierarchically, enhancing route management in
What Is Route Matching Priority in Vue.js
1/10/2024 8:32:11 AM.
In Vue.js, route matching priority determines the order in which routes are evaluated. Proper order in the routes array ensures the correct route is matched, impacting navigation behavior.
How to Create a Vue Project?
1/7/2024 5:55:34 AM.
Creating your first Vue.js project doesn’t have to be daunting. This step-by-step guide walks you through the process, starting from setting up the development environment to running your Vue.js appli
React Router: Seamless Navigation in Your React Applications
12/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.
Detect Route Changes in Angular
12/14/2023 7:08:57 AM.
Learn how to detect route changes in your Angular application. Follow the steps to create an Angular project, configure routes, and implement route change detection for a more interactive application.
Networking Components in Microsoft Azure
10/22/2023 7:29:22 AM.
In this article, we delve into the world of networking within Microsoft Azure. Networking is a vital component of any cloud solution, facilitating communication between resources and users. Azure boas
Model Binding in ASP.NET Core
10/11/2023 8:34:10 AM.
Model Binding in ASP.NET Core for Simplifying Data Interaction
Routing in ASP.NET Core
9/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
API Integration In Angular with Complete Example
8/11/2023 5:12:11 AM.
Angular is a popular open-source JavaScript framework for building dynamic and sophisticated web applications. It is developed and maintained by Google and is designed to simplify the development proc
Standalone Component : A new approach to design Angular Application
8/3/2023 4:18:43 AM.
In this article, we will discuss related to the Standalone Component in Angular Framework. We also demonstrate how we can implement it in any angular applicaiton.
Optimizing Your Azure ExpressRoute Connection with Traffic Collectors
5/3/2023 7:08:39 AM.
ExpressRoute is a service provided by Microsoft Azure that enables customers to establish private, dedicated connections between their on-premises infrastructure and Azure datacenters. To monitor and
Deploying Route Table In The Azure
3/31/2023 6:06:24 AM.
In this article, you will learn how to deploy Route Table in the Azure.
Programmatically Navigate Using React Router
2/2/2023 7:06:26 AM.
React Router is a crucial library for navigation in React applications. It facilitates moving between different views of components, updating the browser URL, and maintaining a consistent user interfa
Angular - Route Guard
9/9/2022 7:25:41 AM.
In this article, you will learn about Angular - Route Guard.
Deploying Azure ExpressRoute Circuit
8/18/2022 5:47:27 AM.
In this article, you will learn how to deploy Azure ExpressRoute Circuit.
Deploying ExpressRoute Direct In Azure
8/8/2022 10:09:41 PM.
In this article, you will learn how to deploy ExpressRoute Direct In Azure.
Types Of Virtual Networks In VMware Virtualization Concepts?
7/11/2022 6:43:09 PM.
We've been talking about the types of Virtual Networks in VMware Virtualization Concepts
Azure Express Route
5/20/2022 1:00:58 PM.
In this article, we'll learn about Azure Express Route.
Configuring The Application Rules In Azure Firewall
2/28/2022 1:47:01 PM.
In this article, you will learn how to configure the application rules in Azure Firewall.
React Router V6 - What Changed And Upgrading Guide - Part Three
1/18/2022 5:40:15 PM.
In this article, you will learn about React Router V6.
React Router V6 - What Changed And Upgrading Guide - Part Two
1/17/2022 5:02:12 AM.
In this article, you will learn about React Router v6 - What Changed and Upgrading Guide.
React Router v6 - What Changed And Upgrading Guide
1/12/2022 4:11:20 PM.
In this Article, we will walk through what’s new with React Router v.6 and how we could update an existing React app, that’s using React router v.5 or lower version to React Router v.6.
Configuring Azure ExpressRoute Virtual Network Gateway
11/24/2021 6:22:39 AM.
In this article, you will learn how to configure Azure ExpressRoute Virtual Network Gateway.
Create Route In React
10/21/2021 1:10:28 PM.
In this article, you will learn how to create route in React.
Configuring Route Server In Microsoft Azure
9/8/2021 6:00:45 AM.
In this article, you will learn how to configure Route Server in Microsoft Azure.
Controllers in MVC : Define Custom Route
5/27/2021 9:10:05 AM.
This articles helps you to create Custom Routes in your ASP.NET MVC application.
Getting Started With ASP.Net Web API 2: Day 3
5/24/2021 9:56:33 AM.
This article explains Web API 2 and how to consume the Web API in Web Forms.
How Routes Work in Web API
4/6/2021 5:55:44 AM.
In this article, I will define how routes work including a simple example.
Routing in MVC3 Application
3/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.
Debugging ASP.Net Web API With the Route Debugger
2/16/2021 5:51:47 AM.
This article introduces ASP.NET Web API debugging with the Route debugger.
Custom Route Constraints in ASP.Net MVC 5
1/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.
Sneak Peak of React Router V6 - React Conference 2020
1/7/2021 5:59:20 AM.
This is the fourth session of the React Virtual Conference by Devlin Duldulao
Routing In Blazor
11/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.
How To Implement Animation Effects In Angular 10
10/2/2020 11:25:22 AM.
In this article, we will discuss related to the animation effects in the Angular 10 framework.
Routing in MVC
9/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 Functions
9/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
What Is The Internet?
7/7/2020 7:11:58 AM.
In this article, you will learn how the internet works.
Multiple Layout In React Using React Router V4
6/23/2020 1:27:14 AM.
This article is for beginners who want to learn how to implement multiple layouts to React using React Router V4. Here, I will show you how we can create multiple layouts or master pages and use those
Routed Events - Bubbling In WPF
5/19/2020 9:06:49 PM.
A routed event is a type of event that can invoke handlers on multiple listeners in an element tree.
Angular Dynamic Page Title Based On Route
5/12/2020 9:02:57 AM.
We will learn how to set the dynamic page title in angular application based on the change of route. We will set the different title for different route
Google Map Route Direction, Custom Pin Point, Calculate Distance And Time Using JavaScript
5/6/2020 9:22:40 PM.
In this article you will learn the following: Google Map Route Direction, Custom Pin Point, Calculate Distance and Time using JavaScript.
Draw an Infinite Route With Multiple Locations on Google Maps
4/16/2020 7:28:59 PM.
Google Maps are limited to 10 locations but this article shows how to draw a route with more than 10 locations on Google Maps with API V3.
How to Draw Routes and Calculate Route Time and Distance on the Fly Using Google Map API V3
4/13/2020 3:09:54 AM.
In this article you will learn how to draw and work with routes on the fly using the Google Maps API V3.
Introduction To Building ASP.NET Core And Angular Web Application
3/24/2020 9:56:19 AM.
In this article, you will learn how to build ASP.NET Core and Angular Web Application.
PageTitle Tutorial in Angular
2/6/2020 1:24:34 AM.
In this article, you will learn about PageTitle in Angular with a step-by-step example.
Learn Angular 8 Step By Step In 10 Days - Route or Component Navigation - Day Ten
1/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 About Azure Virtual Networking (VNET, Subnet, NSG, VNET Peering, VPN Gateway, Express Route)
11/27/2019 1:03:44 AM.
In this article, we learn about Azure Virtual Network, Subnet, VNet Peering, NSG, VPN Gateway, and Express Route.
Introduction to Routing in React
11/15/2019 12:44:32 AM.
This article talks about routing in ReactJs, and how sub routing can be implemented as well.
Navigate From One Component To Another Component Using Router
7/31/2019 7:51:34 AM.
In this article, I have used two child components along with parent components. Using the router concept, we can navigate from one component to another component.
Protecting Routes With Auth Guard In Angular 7
7/19/2019 10:05:43 AM.
We will learn about protecting our routes with Auth Guard in Angular 7.
How To Configure Message Routing With IoT Hub - Part Two
3/6/2019 8:57:54 AM.
In this article, we are going to see how to configure message routing with Azure IoT Hub using Azure Stream Analytics. Here, we will route a message to Azure Tables
Getting Started ✍️With Angular Routing🔀Using Angular CLI – Part 3
1/22/2019 9:37:16 AM.
In this article we are going to learn the basic routing concepts in Angular 6 using Angular CLI (Command Line Interface ).
WPF - Routed Events
1/18/2019 3:13:54 AM.
WPF - Routed Events. RoutedEvents have three main routing strategies which are as follows, Direct Event, Bubbling Event, and Tunnel Event. Basically a CLR event that is supported by an instance of the
Understanding SQL Server Yukon Service Broker
1/17/2019 3:59:45 AM.
The new version of Microsoft SQL Server Yukon comes together with a set of technologies capable of enlarging the horizon for database applications. One of the most remarkable technologies is the Servi
ASP.NET MVC AJAX Helper
12/7/2018 12:37:29 AM.
In this article we will learn about ASP.NET MVC AJAX Helper.