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 Backend
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Kuppu Swami (6)
Guest User (2)
Sara Silva (2)
CSharp TV (1)
Abhishek Saini (1)
Mervyn Manilall (1)
Dharmeshwaran S (1)
Prasad Rane (1)
Sudhir Vaghela (1)
Jamil Moughal (1)
Navneet Mitawa (1)
Akshay Patel (1)
kranthi pothireddy (1)
Sanwar Ranwa (1)
Sardar Mudassar Ali Khan (1)
Koshila Senadhira (1)
Jinal Shah (1)
Syed Shanu (1)
Thiyagu Baskaran (1)
Ajay Kumar (1)
Ramawatar Bhakar (1)
Ukeje Goodness (1)
Syed Shakeer (1)
Raman Sama (1)
Afzaal Ahmad Zeeshan (1)
Satyaprakash Samantaray (1)
Kishore Chowdary (1)
Prasanna Murali (1)
Gul Md Ershad (1)
Jean Paul (1)
Supreet Tare (1)
Anubhav Chaudhary (1)
Related resources for Backend
No resource found
Data Fetching Unleashed: Next.js, React Query and their BFF
11/6/2024 11:37:01 AM.
This video explores the intersection of Next.js, React Query, and the Backend for Frontend (BFF) design pattern, three vital elements pieces that help solve the puzzle of performant and scalable data
How to Create API Gateway for React JS Application?
8/24/2024 7:31:16 AM.
This guide covers setting up an API Gateway for your React.js application using Express.js. Learn how to centralize API requests, enhance security, and optimize performance by routing frontend request
Decouple Frontend and Backend with Postman Mock Server in Angular
8/23/2024 9:55:11 AM.
Postman Mock Servers let front-end developers bypass backend dependencies by simulating API responses. In an Angular project, configure interceptors to direct API calls to mock servers or actual APIs
Using Jquery in React Application
6/16/2024 2:46:19 PM.
Discover how to effectively integrate jQuery into your React application. This guide covers the essentials of using jQuery with React components, handling DOM manipulation, leveraging React lifecycle
Creating Custom Drop Down List Component In Blazor 3.2 WASM
6/5/2024 8:09:06 AM.
Learn to create a custom dropdown in Blazor WASM, a UI component with backend logic. Utilize this component across applications for maximum reusability. Prerequisites include Blazor and .NET Core know
Improve Web Performance Using Debouncing in React.js
6/5/2024 5:03:16 AM.
Debouncing is a programming technique used to improve performance by limiting how often a function, such as an event handler. In React.js, it's commonly applied to optimize tasks like search input
Populating DropDown With AJAX Call
5/7/2024 11:24:02 AM.
There are other ways to populate dropdown in ASP.NET MVC. But using jQuery ajax in populating a dropdown is easy and fast. So in this article I will show you how to populate a dropdown from database u
Learn about jQuery Ajax in ASP.Net
4/29/2024 10:00:43 AM.
Learn how to utilize jQuery Ajax in ASP.Net for efficient client-server communication. Explore sending asynchronous HTTP requests, handling responses, and updating web content dynamically without full
GraphQL In .NET Core Web API With Entity Framework Core - Part Four
4/18/2024 8:20:28 AM.
In this article, we will explore advanced GraphQL integration in .NET Core Web API with Entity Framework Core. Part Four delves into optimized data access, schema design, and API development for robus
Single Page Application with AngularJS in .NET
4/16/2024 10:09:26 AM.
Build responsive single-page applications (SPAs) efficiently with AngularJS in the .NET environment. Utilize AngularJS for frontend development, seamlessly integrated with .NET for robust backend supp
CRUD Operations Using Web API And ReactJS
4/15/2024 11:49:52 AM.
Learn how to perform CRUD operations using a Web API with ReactJS. Explore creating, reading, updating, and deleting data through RESTful endpoints, integrating frontend React components with backend
Angular HTTP Interceptors: Sending Tokens with Every Request
3/24/2024 6:55:14 PM.
In modern web applications, authentication plays a crucial role in securing resources and ensuring that only authorized users can access certain parts of the application. One common way to handle auth
Creating Azure Load Balancer for VM Load Balancing
3/21/2024 9:08:20 AM.
This article guides you through configuring a load balancer in Microsoft Azure to distribute traffic across virtual machines efficiently. It outlines steps to integrate VMs into the load balancer'
REST API Using Node.js, MongoDB, And Express
3/11/2024 9:24:27 AM.
Build a robust REST API with Node.js, MongoDB, and Express. Utilize Express for easy routing, MongoDB for database operations, and Node.js for server-side logic. Implement CRUD functionality, handle a
ASP.NET Core Blazor Filtering And Sorting Using Entity Framework And Web API
2/29/2024 9:13:45 AM.
In this article, we will explain in detail, how to create an ASP.NET Core Blazor Filter and Sorting for HTML Table using Entity Framework and Web API.
Handling HTTP Options Method in Angular and C#
1/12/2024 7:16:34 AM.
Learn about the HTTP OPTIONS method in this tutorial, focusing on how AngularJS frontend and C# backend work together. See how the AngularJS controller uses OPTIONS requests to communicate with the C#
Handling HTTP Patch Method in AngularJS Frontend and C# Backend
1/12/2024 7:14:11 AM.
Discover the power of the HTTP PATCH method with this tutorial, focusing on AngularJS frontend and C# backend integration. Uncover the nuanced approach of making partial updates to resources, as the A
Handling HTTP Delete Method in AngularJS Frontend and C# Backend
1/12/2024 7:11:48 AM.
Explore the effective use of the HTTP DELETE method in this tutorial, focusing on AngularJS frontend and C# backend integration. Learn to implement a streamlined resource deletion process as the Angul
Handling HTTP Put Method in AngularJS Frontend and C# Backend
1/12/2024 7:06:54 AM.
Learn how to implement an HTTP PUT method in an AngularJS frontend and C# backend. The AngularJS HTML frontend features a form for resource updates, while the C# backend uses a Web API controller. Fol
Implementing Document Upload to AWS S3 with ReactJS Frontend and Python Backend using Boto3
1/12/2024 4:41:13 AM.
Learn to build a document upload feature with ReactJS and Python. Ensure prerequisites, create a ReactJS component, and set up a Python backend using Flask and Boto3 for seamless AWS integration.
Handling HTTP Post Request Method in AngularJS Frontend and C# Backend
12/29/2023 11:40:53 AM.
The POST method in HTTP sends data to a server to create a new resource. It's used for submitting information—like form data or JSON payloads—to the server. Unlike GET, it's not idempotent, ty
Handling HTTP Get Request Method in AngularJS Frontend and C# Backend
12/26/2023 8:04:48 AM.
This guide explores the utilization of HTTP GET request method within an AngularJS frontend and their corresponding processing and handling in a C# backend. It details how Get types of requests initia
Building a GraphQL Backend with .NET 6
12/13/2023 1:42:59 PM.
Explore the world of GraphQL in .NET 6 with this comprehensive guide. Learn how to set up a GraphQL backend using HotChocolate, step by step, and unlock powerful data querying capabilities.
How to Write Secure Code in C#?
9/13/2023 10:24:13 AM.
Secure coding in C# is essential for safeguarding sensitive information and preventing security breaches. Follow these best practices to enhance your application's security. Protecting Your C# App
Backing Up Cache Data Using NCache
8/24/2023 4:03:37 AM.
Backing up cache data using NCache refers to the process of creating copies of the cached data stored in NCache and storing them in a secondary location for data protection and disaster recovery purp
How to calculate total at the Backend using Trigger
5/31/2023 6:05:33 AM.
How to do Some Backend Calculations Using Triggers for Increased Security
Understanding Parallel Programming Using Pthreads In PHP
2/13/2020 7:59:02 AM.
PHP is the appeal of a simple synchronous, single-threaded programming which attracts most developers. And for significant performance improvement,Pthreads can enhance the experience of your website i
Utilizing Azure Redis Cache As Backend For Chat App
3/29/2018 11:05:54 PM.
I have had some experiences trying to build a chat application—most of the time I failed, or I had some other important stuff to deal with. A few weeks back I wanted to check some services on Microsof
Store Photo In Backend Using Entity Framework In MVC Razor And Bootstrap
9/22/2017 12:10:25 AM.
Here i will show you image details will be shown along with user name. This one a sample exmaple of student management system In mvc and bootstrap.
Creating An Internal Load Balancer In Microsoft Azure
2/12/2017 1:26:21 PM.
In the following article, I have explained the method of creating a load balancer in between two different VMs.
Cross Platforms - Managing Azure Mobile Backend And Dealing With NuGet Packages For Native Platforms
12/26/2016 5:02:02 PM.
In this article, you will learn how to manage Azure mobile back-end and deal with NuGet packages for native platforms.
Cross Platforms - Creating Mobile Apps With Backend Using Azure - Part Three
12/23/2016 11:00:32 AM.
In this article you will learn Cross Platforms - creating mobile apps with backend using Azure.
Connecting Windows App To The Mobile Engagement Backend
11/30/2016 6:02:06 AM.
In this article, you will learn about connecting Windows Applications to the Mobile Engagement backend, using Windows Azure.
Back-End Server Communication With AngularJS
2/1/2016 11:44:25 AM.
This article is intended to explain the concept of communication with back-end services.
SharePoint as a Backend
6/5/2015 4:12:19 PM.
In this article you will learn about SharePoint as a backend.
Azure Mobile Services For .Net Backend
3/18/2015 2:48:59 PM.
This article contains Questions & Answers about Azure Mobile Services and provides tips for the .Net backend.
Avoid Nightmares Updating the .Net Backend Project From Azure Mobile Services
1/16/2015 1:12:40 AM.
In this article you will learn how to update a .Net Backend project from Azure Mobile Services and how to update the references added to the project using Nuget packages.
Create a Multi-Table, .Net Backend Azure Mobile Services Driven Windows Phone App
4/25/2014 4:08:05 PM.
This article describes how to create a multi-table .Net Backend Azure Mobile Services driven Windows Phone App.
$httpBackend Service in AngularJS
3/6/2014 5:09:52 PM.
This article introduces the $httpBackend Service in AngularJS.