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 next
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 (40)
CSharp TV (4)
Mahesh Chand (3)
Santosh Karanam (2)
Lalit Bansal (2)
Venkatasubbarao Polisetty (2)
Yashwant Vishwakarma (2)
Sibeesh Venu (2)
Darshan Adakane (1)
Aayushi B (1)
Chetan Sanghani (1)
Sarthak Varshney (1)
Nitin Pandit (1)
Amira Bedhiafi (1)
Chris Love (1)
Akkiraju Ivaturi (1)
Bassam Alugili (1)
Mukul (1)
Shubhankar Banerjee (1)
Mohamed Azarudeen Z (1)
Janarthanan Selvaraj (1)
John Godel (1)
C# Curator (1)
Ramasagar Pulidindi (1)
Tural Suleymani (1)
Kamna Priya (1)
Kirtesh Shah (1)
David Mccarter (1)
Guest User (1)
Rithik Banerjee (1)
Virender Verma (1)
Pankaj Kumar Choudhary (1)
Shahid Mansuri (1)
Bhasker Das (1)
Pankaj Lohani (1)
Mahak Gupta (1)
Gaurav Jain (1)
Biswa Pujarini Mohapatra (1)
Prasham Sabadra (1)
Sanwar Ranwa (1)
Akshay Phadke (1)
Pradeep Shet (1)
Muthu (1)
Gourav Jain (1)
Muhammad Aqib Shehzad (1)
Stephany Henrique Batista (1)
Rion Williams (1)
Ajay Gandhi (1)
Manpreet Singh (1)
Anubhav Chaudhary (1)
Dominique Ceja (1)
Related resources for next
No resource found
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
Optimizing Performance in Next.js
8/8/2024 10:06:30 AM.
Performance is crucial in web development, and Next.js offers several tools and strategies to ensure your application runs efficiently. This article covers essential techniques for optimizing performa
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
How Do We Create Custom APIs with Next.js?
8/8/2024 5:25:24 AM.
Next.js allows you to create custom APIs with API routes defined in the pages/api directory. You can handle various HTTP methods (GET, POST, PUT, DELETE), use query parameters, connect to databases (e
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
Implementing OAuth Authentication in Next.js
8/7/2024 10:57:14 AM.
OAuth allows users to log in via third-party providers like Google and GitHub. Here’s a streamlined guide to integrating OAuth with NextAuth.js in your Next.js application.
Using Next.js with TypeScript
8/7/2024 7:29:18 AM.
Integrating TypeScript with Next.js enhances code quality by adding static types. Start by creating a Next.js project, then install TypeScript and necessary type definitions. Configure tsconfig.json,
How to Customize the Next.js Webpack Configuration?
8/7/2024 6:42:44 AM.
Next.js, a popular React framework, provides a powerful built-in Webpack configuration to handle bundling and optimization. However, you might need to customize this configuration to fit specific need
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
How to Create Custom Middleware in Next.js
8/5/2024 4:57:05 AM.
In Next.js, middleware allows you to run code before a request completes, useful for tasks like authentication, logging, and redirection. Introduced in version 12, it can be applied globally or to spe
How to Create a Custom 404 Page in Next.js
8/5/2024 4:30:51 AM.
In Next.js, customizing a 404 page improves user experience by guiding users who land on non-existent pages. Create a 404.js component in the pages directory, style it with 404.module.css, and add nav
How to Implement Localization in Next.js?
8/5/2024 4:00:36 AM.
. This guide covers the basics of internationalization (i18n), setting up Next.js for multiple languages, managing translations, and dynamically rendering content based on the user's language pref
How to Implement Email Verification in Next.js?
8/2/2024 6:12:03 AM.
Email verification is a crucial step in user registration processes, ensuring that users provide valid email addresses and confirming their identity. This guide demonstrates how to implement email ver
How to Implement Pagination in Next.js
8/2/2024 5:22:44 AM.
Pagination helps manage large datasets by dividing them into manageable chunks. You can implement pagination in Next.js either server-side or client-side. Here's a streamlined guide to get you sta
How to Handling File Uploads in Next.js?
8/2/2024 4:33:07 AM.
Handling file uploads in Next.js involves creating an API endpoint to receive and process the files and a client-side component to manage file selection and submission. This guide provides a comprehen
Next-Gen Collaboration: Harnessing Microsoft 365 Core Services
7/25/2024 7:08:31 AM.
Microsoft 365 Core Services include Exchange Online for email, SharePoint Online for document management, Microsoft Teams for collaboration, Yammer for internal communication, Intune for device manage
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
Exploring New Features in Next.js 15
7/22/2024 6:18:19 AM.
In this article, we will learn that Next.js 15 introduces a suite of new features and improvements aimed at enhancing developer experience and application performance.
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
Next.js vs. React: Key Differences and Use Cases
7/22/2024 5:10:25 AM.
Next.js and React are popular tools in the web development ecosystem. While React is a JavaScript library for building user interfaces, Next.js is a framework built on top of React that offers additio
Handling Middleware in Next.js
6/23/2024 9:44:50 PM.
Middleware in Next.js, introduced in version 12, allows code execution before a request is processed. Useful for authentication, logging, URL rewrites, and modifying headers, it runs on the Edge Netwo
Implementing Webhooks with Next.js
6/21/2024 6:42:03 AM.
In this article we will learn about implementing webhooks in Next.js empowers our application with real-time capabilities, allowing seamless integration with external services and automating business
Building Progressive Web Apps (PWAs) with Next.js
6/21/2024 6:20:28 AM.
We highlight the advantages of using Next.js to build PWAs, emphasizing their capability to provide a user experience similar to native apps. By utilizing Next.js, we maintain the benefits of web tech
Displaying Previous Current Next 2 Weeks in Power Apps Combo Box
6/11/2024 12:03:29 PM.
This Power Apps script generates a ComboBox displaying the previous 2 weeks, current week, and next 2 weeks. It utilizes variables to set the current date, calculates date ranges based on weekdays, an
The Future of Leadership: Emerging Trends and Skills for the Next Generation
6/10/2024 7:53:50 AM.
The field of leadership is evolving rapidly in the modern workplace. Future leaders must embrace digital tools, foster inclusive environments, demonstrate agility, show empathy, and develop cross-cult
Introducing Copilot+ PCs
5/23/2024 6:29:02 AM.
Explore the revolutionary Copilot+ PCs, designed to integrate AI seamlessly into your daily computing tasks, enhancing productivity and personalization like never before.
All About BI Tools and Types to Make You Ready for Next Action
5/13/2024 11:13:42 AM.
This article is for you if you are getting your steps in BI Tech Stack. Here in this article, you will learn the basics of BI with its types.
Operational Data Stores (ODS) in Business Intelligence
2/19/2024 7:07:50 AM.
This comprehensive article introduces operational data stores (ODS) and their significance in modern data-driven businesses.It covers fundamental principles, distinguishing ODS from other data storage
What is Prompt Engineering and Why It Might Be Your Next Career Path
11/29/2023 9:28:22 AM.
Unlock the potential of your career with Prompt Engineering. Discover what it is and why it could be your next big move in the tech industry and path to an artificial intelligence career.
Pagination In SQL Server
10/9/2023 8:51:10 AM.
Pagination in SQL Server refers to the practice of dividing a large set of query results into smaller, manageable subsets, or "pages," to improve performance and user experience. This techni
C# 8.x Next
10/9/2023 7:32:19 AM.
This article is describing C# NEXT feature status and demonstrating with examples.
How to Implement Chakra UI Checkbox in Next.js
9/27/2023 11:28:53 AM.
In this article we will learn about how Chakra UI Checkbox can be implemented in Next Js.
How to Implement Chakra UI Button Loading State in Next.js
9/27/2023 9:25:10 AM.
In this article we will learn about how Chakra UI Button Loading State can be implemented in Next Js.
Dynamic Radio Button Component in Next.js
9/21/2023 7:05:53 AM.
Here we will learn how to create shared dynamic radio button component.
Using Autocomplete in Next.js
9/20/2023 6:57:43 AM.
In this article we learn step by step how to add autocomplete in Next Js application.
GraphQL in Next.js
9/15/2023 11:43:53 AM.
Here we will give the description how to setup GraphQL with Next.js.
Deploying a Next.js Application using Azure App Service
9/10/2023 10:13:40 AM.
We will learn step by step deploying Next Js application using Azure App Service.
Automatic Image Optimization in Next.js
9/4/2023 8:46:31 AM.
Here we will learn about the Automatic Image Optimization in Next.js application.
How to Integrate Ganache with NextJS
8/5/2023 5:39:37 AM.
introduction to ganache and Next.js installation and how to integrate ganache with NextJS.
Entering the Next Phase with Polygon 2.0
7/27/2023 9:45:57 AM.
Polygon 2.0: Game-changing blockchain platform offering scalable dApps. Enhanced protocol architecture, POL tokenomics, and decentralized governance.
Azure Devcenter- The nextgen dev environment
7/18/2023 6:53:49 AM.
Dev Center offers a range of features such as version control, project management, continuous integration and delivery (CI/CD), and application monitoring and insights. Dev Box Pool:
Next Gen Computer Vision Capabilities with Project Florence Foundation Model
6/28/2023 5:22:34 AM.
This article describes about the Project Florence and Vision Studio capabilities.
How To Use Redux In Next JS Application
6/13/2023 7:07:09 AM.
In this article we will learn how to manage state with redux in react js application.
How To Create Form With Validation In Next JS Application
6/10/2023 7:09:26 AM.
In this article, we will learn how to create Next JS project and create a Form with Validation using react-bootstrap.
Exploring .NET 7.0.3 And C# 11 - The Next Leap In Software Development
4/7/2023 5:03:06 AM.
.NET 7.0.3 and C# 11 have made significant strides in the world of software development, offering new features, improvements, and optimizations. This article aims to provide a comprehensive overview o
JavaScript Interview Survival Guide: Expert Tips and Tricks for Acing Your Next Interview
3/27/2023 10:43:35 AM.
Are you preparing for a JavaScript interview and looking for expert tips and tricks to help you succeed Look no further In this comprehensive guide, you'll find everything you need to know to ace
How To Read Excel File In Next JS Application
3/27/2023 7:09:15 AM.
In this article, we learn how to read Excel file in React JS application.
How To Upload And Download File To API In Next JS Application
3/27/2023 6:59:35 AM.
In this article, we learn how to create next js application and upload image in Web API using axios.
How To Use Captcha In Next JS App
3/27/2023 5:17:19 AM.
Here in this article, we check how to create Next JS application and use captcha with Next JS.
How To Call Web API In Next JS Application Using Axios
3/27/2023 5:12:21 AM.
In this article, you will learn how to call API using Axios in Next JS application.
How to Generate a Random Number and Random String in C#?
2/21/2023 4:36:55 PM.
The Random.Next() method returns a random number in C#. The code examples show how to generate a random string and random number in C#.
Using FluentValidation.DependencyInjectionExtensions To Simplify Validation In .NET Applications
1/2/2023 8:58:42 AM.
This article discusses the use of FluentValidation.DependencyInjectionExtensions, an extension for the popular .NET validation library FluentValidation. The extension enables the use of dependency inj
How To Setup Material Grid In Next JS With Material UI/MUI Component
11/29/2022 5:08:37 AM.
Material UI or MUI is a library of React UI components that implements Google's Material Design. A fast and extendable react data table and react data grid. It's a feature-rich component avail
How To Setup Button and Dropdown In Next JS With Material UI/MUI Component
11/8/2022 8:17:45 AM.
Material UI is a library of React UI components that implements Google's Material Design. Buttons allow users to take actions, and make choices, with a single tap. Select components are used for c
How To Setup Tooltip In Next JS With Material UI/MUI Component
11/1/2022 5:45:47 AM.
Material UI or MUI is a library of UI components that implements Google's Material Design.Breadcrumbs consist of a list of links that help a user visualize a page's location within the hiera
How To Setup Next JS With Material UI/MUI Component Basic Breadcrumbs
10/7/2022 5:25:46 AM.
Material UI or MUI is a library of React UI components that implements Google's Material Design. Breadcrumbs consist of a list of links that help a user visualize a page's location within the
The Next Interview Question - Identity Vs Newsequentialid Vs Newid
7/31/2022 7:53:59 PM.
In this article, you will learn about Identity vs NewSequentialId vs NewId.
STRAPI Architecture
7/25/2022 7:57:15 PM.
Strapi is an open-source headless CMS that allows the editor to easily manage and distribute content. This is the actual mindset or Strapi creator - Pierre Burgy - Co-founder & CEO of Strapi.
ASP.NET Core - Middleware
7/7/2022 3:30:42 PM.
In this article, you will learn about Middleware in Asp.net Core.
Prepare, Prepare And Prepare Some More For Your Next Technical Interview!
6/24/2022 3:18:28 AM.
In this article, you will learn how to prepare for your next technical interview!
Dependency Injection In ReactJS
5/10/2022 9:33:52 AM.
In this article, you will learn about dependency Injection in ReactJS using logger example
Deploy Your Website In Azure Static Web App For Free
5/7/2022 12:31:21 PM.
In this article, you will learn how to deploy website for Free with Azure Static Web App.
Web 3.0 - The Next Generation's Internet And Understanding The Concept Of Metaverse
2/9/2022 1:59:45 PM.
In this article, you will learn about Web 3.0 - The Next Generation's Internet And Understanding The Concept Of Metaverse.
Move To Next Stage Using JavaScript In BPF
12/8/2021 1:31:25 PM.
At times we must work on BPF Stages and navigate Stages automatically based on the business requirement, in this post we are going to see how it can be achieved through javascript. As an example, exis
Understanding Move Next and Move Previous in BPF
12/1/2021 4:25:55 AM.
At times we must work on BPF Stages and navigate Stages automatically based on the business requirement, for quick test D365 Client API’s can be used for navigation with predefined methods moveNext an
Cloud Microservices to Serve the Next Billion - Code Quality & Performance Virtual Conference
6/21/2021 10:15:18 AM.
This session in Code Quality & Performance Virtual Conference is about Cloud Microservices to Serve the Next Billion
Taking code to next level with Open Source (Git & Github) - Code Quality & Performance Virtual Conference
6/21/2021 9:40:08 AM.
This session in Code Quality & Performance Virtual Conference is about Taking code to next level with Open Source (Git & Github)
Scaling WordPress with Next js - React Virtual Conference 2021
6/14/2021 8:19:06 AM.
This session in React Virtual Conference 2021 is about Scaling WordPress with Next js
ASP.Net vNext: Part 1
6/8/2021 8:56:12 AM.
In this article, you will learn ASP.NET vNext (series 1).
Top Reasons To Choose React For Your Next Project
12/4/2020 10:39:01 AM.
In this article, you will learn about Top Reasons to Choose React for Your Next Project.
The Next Big Thing - Automated ML : Azure AI Show Ep. 2
9/19/2020 9:34:26 AM.
This is the second episode of the Azure AI Show.
Find The Next Greater Element
7/8/2020 6:47:16 AM.
In this article, you will learn how to find every element's next greater element.
Auto Trigger Next Approval Based On Time Interval Using Power Automate
6/15/2020 7:01:39 AM.
In this article, I will provide information on how to auto trigger an approval to next user based on time interval using Power Automate.
Master In Next.js - Part One
5/30/2020 2:47:40 AM.
In this article, we learn what is Next.js and cover the some basic of Next.js in the next article we will learn more about the Next.js.
Which JavaScript Framework Should You Use For Your Next Web App
5/30/2020 2:07:01 AM.
One of the common questions that we often come across is “What's the right JavaScript framework that we should use for a web application?”. Given the number of choices we have today, we certainly
Installing No-Code Tool - Graphite Studio
4/23/2020 11:55:49 PM.
This article will help you to install the No-Code tool "Graphite Studio" starting from download installer, installation steps and fixing installation errors.
Properties of Process Object in NodeJS
4/20/2020 1:06:11 PM.
This article explains the properties of Process objects.
DropDownExtender With JavaScript
4/3/2020 4:42:51 AM.
Here you will see a simple example of a DropDownExtender With JavaScript.
Why It’s Worth Considering Angular For Your Next Web App
11/14/2019 8:04:07 AM.
In the below article, I tried to explain why it's worth considering Angular for the new application.
Next Generation of HTML - HTML5
10/28/2019 3:30:45 AM.
In this article you will see Brief description of HTML5.
Page Diagnostics Tool For SharePoint Online Is Released - Tool To Help To Improve Page Performance
9/23/2019 8:46:55 AM.
In this article, we will discuss about Page Diagnostics Tool for SharePoint Online.
Internationalization In ReactJS Application Using i18Next
9/3/2019 11:55:54 PM.
In this article, you will learn about internationalization in ReactJS application using i18Next.
How To Prepare Yourself For Your Next Job. Simple Steps.
12/17/2018 11:37:03 PM.
I started my first consulting job in 2002 and since then I’ve never had a situation when my next job is not already lined up. I always have jobs waiting for me. This is something you can learn from me
Installing SQL Server vNext On Linux - Part One
9/21/2018 12:49:09 AM.
Installing SQL Server vNext On Linux. install SQL Server vNext on Ubuntu, install SQL Server on Linux. install SQL Server vNext on Linux. install SQL Server vNext.
One Tip To Boost Your Career To The Next Level
7/15/2018 6:12:11 AM.
Here in this article, I am going to say about one thing which can boost your career to the next level. Trust me, this is going to work. I am Sibeesh Venu, I have been in the software development indus
Installing SQL Server vNext On Linux - Part Two
7/5/2017 12:27:10 AM.
With the release of Microsoft SQL Server on Linux, it is a huge step towards gaining markets in Database Technologies giving competition to other RDBMS software. Microsoft SQL Server is not only on Wi
SQL Server (VNext) On Linux
12/26/2016 1:12:14 PM.
In this article you will learn about SQL Server (VNext) on Linux.
Introduction To .NET Core 1.0
9/14/2016 5:19:38 AM.
In this article, you will learn about .NET Core 1.0.
An Introduction To ASP.NET vNext
8/8/2016 12:02:13 PM.
In this article, you will learn about ASP.NET vNext.
Quick Start-up for .NET Core on Windows and Linux
8/5/2016 2:56:06 AM.
This article will give a kick start to building an application using .NET Core on Linux and Windows.
AJAX Control Toolkit Tutorial: AnimationExtender- Part Five
5/31/2016 10:30:19 AM.
In this article we will see how we can use the Ajax control toolkit animation extender control with examples.
Choosing Your Next Company: Corporation, Medium-Sized, or Startup
4/29/2016 12:04:53 PM.
Looking to join a new company? Not sure if you want to work for a small or large company? Here is some advice.
ASP.NET Core 1.0 And Why There Has Been So Many Changes
2/12/2016 11:43:46 PM.
In this article you will learn why ASP.NET Core 1.0 was announced and what changes were introduced in the new ASP.NET.
ASP.NET vNext Community Stand-up Series
12/21/2015 12:14:05 PM.
In this article you will see ASP.NET vNext Community Stand-up Series.
Changing The Image On Previous And Next Button Using Ajax In MVC 5
12/7/2015 3:19:54 PM.
In this article we will learn stepwise how to change the image in previous and next button using Ajax in MVC.
Action: Set Next State In Nintex Workflows Through SharePoint 2013 And Office 365
10/28/2015 12:50:53 PM.
In this article you will learn how to set next state in Nintex Workflows through SharePoint 2013 and Office 365.
Custom Pager Using Prev And Next In jQuery
10/23/2015 2:28:48 PM.
In this post we will create a custom pager using prev and next functions in jQuery. You can treat this post as a simple demo of using prev and next functions.
Accordion to Collapse/Expand section With/Without clicking on it
7/5/2015 9:48:55 AM.
This article explains how to create an Accordion using jQuery that also has a next button to open/close the sections of an Accordion.
Office 365 Video Portal - SharePoint Engineering
6/5/2015 1:55:27 AM.
Here I explain the SharePoint engineering decisions in the scope of SharePoint Online that were implemented to deliver the NextGen Office 365 Video Portal.