Resources  
  • Learn Webhook vs. Callback URLJun 13, 2024. Webhooks and callback URLs are key in web development, enabling real-time updates and automatic interactions. Webhooks push data on specific events, used in real-time notifications and CI/CD. Callback URLs, crucial in OAuth and API integrations, expect responses at specified URLs.
  • How to Pass a Parameter to Event Handler or Callback in React.jsFeb 22, 2024. In React, passing parameters to event handlers can be done using arrow functions or the bind method. Choose the approach that suits your project for optimal performance and readability.
  • O365/ SharePoint Online - Getting User Image URL Without Callback In JSOMMay 30, 2017. O365/ SharePoint Online - Getting user image URL without Callback in JSOM.
  • Understand JavaScript Callback Functions and Call by Value and Call by ReferenceMar 30, 2014. This article explains callback functions, call by value and call by reference in JavaScript.
  • Difference Between a Postback and a Callback in ASP.NetNov 18, 2013. Here is a good explanation of the difference between a Postback and a Callback in ASP.Net.
  • Advanced JavaScript: Callback Design Pattern and Callback FunctionNov 12, 2013. This article explains callback functions in JavaScript.
  • Understand jQuery Ajax Function: Callback Function of jQuery Ajax MethodNov 01, 2013. In this article we will understand various callback functions of jQuery Ajax methods.
  • Using Callback Function in jQueryMay 10, 2013. This article shows how to use a callback function in ASP.NET using jQuery.
  • Role of Callback and Chaining in jQuery ’s Animate & EffectMay 09, 2011. Callback and Chaining play an important role in jQuery coding when using animate / effect methods. In this article we will understand it with the help of a small example.
  • Asynchronous Data Access using Callback ModelAug 17, 2005. The problem with the ADO.Net 1.x is that one thread has to wait for the other thread to complete. So to overcome this problem Microsoft has introduced Asynchronous data access, through which one can execute multiple threads at a time.
  • Understanding Event Loop, Callbacks, and Promises in Node.js Jul 02, 2025. Learn how Node.js handles asynchronous operations using the event loop, callbacks, promises, and async/await. Understand microtasks, macrotasks, and how to write clean, non-blocking async code.
  • Understanding Callbacks with Func and Action DelegatesSep 26, 2024. This article explains how to use Func and Action delegates in C# to implement callbacks, providing flexible and reusable code. It includes practical examples for both returning and non-returning methods.
  • Java Script Callbacks: Syntax, Usage, and ExamplesJun 17, 2024. JavaScript is designed to support asynchronous programming; it can handle numerous tasks concurrently. JavaScript callbacks are crucial because they let you run code after an asynchronous task completes.
  • Power of Callbacks in ES8 and TypeScriptJan 17, 2024. Callbacks in JavaScript play a pivotal role in handling asynchronous operations, enabling developers to execute code after the completion of a specific task. In this article, we'll explore the concept of callbacks, and delve into examples showcasing their utility.
  • Callbacks - The Definitive GuideFeb 01, 2023. This article will help you to understand callbacks and their practical usage.
  • How To Send Parameters To Event CallBacks In BlazorMar 01, 2022. In this article, we will learn what are the steps you need to take to send a parameter in event callbacks in blazor, we demonstrated the same with a Blazor server app.
  • Callbacks In JavaScript😝Sep 29, 2021. In this article, you will learn about callbacks in JavaScript.
  • The Curious Case Of Callbacks Vs ES6 PromisesJul 01, 2018. The caption over here totally summed up my views regarding the two most fundamental concepts in the world of javascript prior to writing this piece.
  • Callback Concept And Events In Node.jsDec 06, 2017. Hello friends, today I explain you about callbacks and events in Node JS. People who are new to Node JS please learn previous articles NodeJS - Getting Started With Some Basic Functions .
  • How To Schedule Timer-Based Callbacks With ExampleNov 16, 2017. In this article, we will look at how the JavaScript timer functions - settimeout, setinterval, and Cleartimeout -- are used to schedule and cancel timer-based Callbacks, with a simple example of stopwatch program.
  • Node.js: Callbacks - Day FourAug 21, 2016. In this article, you will learn about callbacks in Node.js.
  • Callback Operation By Delegate Or InterfaceNov 02, 2015. This article is intended to explain the concept of callback operation with the help of Delegate.
  • Simple Server Callbacks using JQuery in ASP.NET Page Part: IIMar 11, 2010. Now in this part we use Same $(#divId).Load() function. But with more interactive like having progress message while the callback load the data from server.
  • Simple Server Callbacks using JQuery in ASP.Net pageMar 11, 2010. Here I'm showing you how to prepare ajax calls using jquery and showing the data coming from server side to html page without any postback.
  • Implementing Client Callbacks Programmatically without PostbackMay 12, 2008. This article help web developers to use CallBack instead of Ajax in some important issues like Updatable Data Source.
  • Windows Communication Foundation callbackJun 12, 2007. This article is intended to illustrate how to implement callback operations in WCF through a common business scenario where the service needs to notify that some events has happened to the client. During a callback, in many aspects the tables are turned: the service becomes the client, and the client becomes the server.
  • Using Client Callbacks for Building the ListBoxesFTs_C ASP.NET Web User Control: Part IINov 27, 2006. In this article I share how you can build your own ASP.NET web user control with the help of the Client Callbacks. The examples are written using C# and JavaScript.
  • Using Client Callbacks for Building the ListBoxesFTs_C ASP.NET Web User Control: Part INov 23, 2006. In this article I share how you can build your own ASP.NET web user control with the help of the Client Callbacks. The examples are written using C# and JavaScript.
  • A Server Timer using ASP.Net Client side callbackNov 20, 2006. This page is to design a client side timer which will display the server time without refereshing the page and using the client side callback feature of the ASP.Net feature.
  • Asynchronous Callbacks and Ajax based UI Experience in Web ApplicationsSep 11, 2006. The current article shows a couple of different views of showing progress bars in Web based applications.
  • JavaScript Event Loop: Microtasks vs Macrotasks ExplainedAug 20, 2025. The JavaScript event loop is one of the most fundamental concepts to understand for mastering asynchronous programming. This article explores how the event loop works, what microtasks and macrotasks are, and how they affect code execution order.
  • How do you handle errors in a Node.js application?Aug 18, 2025. This article explains the different ways to handle errors in a Node.js application using simple words and clear examples. It covers types of errors, error-handling techniques, and best practices.
  • Difference Between Synchronous and Asynchronous Programming in Node.jsAug 14, 2025. This article explains in simple words the difference between synchronous and asynchronous programming in Node.js, how they work step-by-step, their pros and cons, and when to use each. It includes JavaScript examples clearly marked for easy understanding.
  • Advanced concepts of JavaScriptAug 14, 2025. Master advanced JavaScript concepts like closures, hoisting, prototypes, async/await, event loop, and functional programming to write efficient, reusable, and well-structured code for modern applications.
  • Why is Node.js single-threaded, and how does it handle concurrency?Aug 13, 2025. This article explains in simple words why Node.js is designed to be single-threaded, the role of its event-driven architecture, and how it achieves concurrency using the event loop, asynchronous operations, and non-blocking I/O. Includes clear explanations and code examples in JavaScript.
  • What is the Event Loop in Node.js, and How Does It Work?Aug 13, 2025. This article explains the concept of the Event Loop in Node.js, why it exists, how it works step-by-step, and how it allows asynchronous, non-blocking operations in a single-threaded environment. Includes clear JavaScript examples to make the topic easier to understand.
  • How the Event Loop Works in JavaScript?Aug 12, 2025. An in-depth guide to JavaScript’s event loop—how a single-threaded language manages concurrency using the call stack, callback queue, and event loop, both in browsers and Node.js. Includes explanations, diagrams, and related C# Corner articles for further reading.
  • Is JavaScript Synchronous or Asynchronous?Aug 08, 2025. Explore the core differences between synchronous and asynchronous execution in JavaScript. Learn how each model works, why asynchronous programming is essential for modern web applications, and how patterns like callbacks, promises, and async/await help manage complexity—illustrated with insights from C# Corner articles.
  • Why Node.js is Non-Blocking: Event Queue, Loop, and Emitters ExplainedJul 01, 2025. Have you ever wondered how Node.js can handle thousands of users at once, all while running on a single thread? The secret lies in its non-blocking, event-driven architecture-powered by the event loop, event queue, and EventEmitter.
  • Web api call in AndroidOct 25, 2024. This article explains how to call a Web API in an Android app using Java. It covers key concepts like HTTP methods (GET, POST), status codes, headers, and the use of the OkHttp library for making API requests.
  • How to Use async in jQuery When Calling an API Using AjaxJul 30, 2024. Learn how to use async and await in jQuery to streamline API calls with Ajax. This guide covers setting up an HTML page, creating a JavaScript file for async operations, handling errors with try-catch blocks, and updating the UI with fetched data. Simplify asynchronous code and improve readability.
  • Task Scheduling with System.Threading.Timer in .NETJul 21, 2024. Efficient task scheduling is essential for many applications, whether you're building background services, automated tasks, or periodic data processing. In .NET, the System.Threading.Timer class provides a powerful and straightforward way to schedule tasks to run at specific intervals.
  • Digicash Payment Gateway Webhook Real-Time MVC UI UpdatesJun 13, 2024. In this article, we will learn how to integrate the Digicash payment gateway into your MVC web application with real-time UI updates using webhook callbacks.
  • Asynchronous Programming in Angular Promises vs. ObservablesMar 06, 2024. Asynchronous programming plays a crucial role in modern web development, especially in Angular applications where data fetching, event handling. In this article, we'll delve into the differences between promises and observables, their usage, and provide code examples to illustrate their behavior.
  • Action and Func Delegates in C#Jan 02, 2024. Unlock the potential of Action and Func delegates in C# programming. Dive into the world of expressive and readable code, utilizing these powerful tools for method-passing, event handling, and more. Happy coding!
  • Delegates in C# Aug 25, 2023. Explore the fundamental potency of C# delegates—vital for encapsulating methods as first-class entities. Empower callbacks and event management for efficient C# application development.
  • What is Synchronous and Asynchronous Programming in JavascriptMay 24, 2023.
  • 5 Steps To Implement Event Call-Backs In BlazorFeb 28, 2022. In this article, you will learn about Hands-on implementation of parent child communication in blazor.
  • Event Handling In BlazorJun 15, 2021. In this article, you will learn about Event Handling in Blazor.
  • How Events And Delegates Are RelatedJun 28, 2018. This articles describes about what is delegate, what are the different ways to define and declare delegates, when to use delegates, what is event and how events and delegates are associated or related with each other
  • Delegates, Anonymous Method, And Lambda Expression In C#Jan 25, 2017. Delegates, Anonymous Methods, and Lambda Expressions in C# introduces essential concepts in C# programming related to delegates, anonymous methods, and lambda expressions. These features enable developers to create flexible, reusable, and concise code for handling method references, encapsulating behavior, and enhancing functional programming within C# applications.
  • Overview Of Delegate Concept In C#Jan 19, 2017. Delegates in C# are objects that hold references to methods. They enable callback functionality and event handling. There are single-cast and multicast delegates, supporting both void and non-void return types, offering type safety and flexible method invocation.
  • Understanding ES6 PromisesJun 28, 2016. In this article, you will learn about JavaScript Promises.
  • Promise In JavaScriptMar 12, 2016. In this article, I explain the concept of Promise in JavaScript: its use and its difference from a normal callback function.
  • C# Delegate - A Silent Hero Behind Modern ProgrammingDec 29, 2015. This article is about the usage of Delegate and its Power (multi-casting, Func, Action, Predicate, Event & Callback methods and so on).
  • Delegates in C# - Part 1Dec 14, 2014. This article explains what delegates in C# are, how to use them and provides a real-life sample use of them.
  • Delegates in .NETJul 27, 2014. In this article, we will learn Delegates in .NET provide a powerful mechanism for defining and encapsulating methods, enabling flexible event handling and callback functionality.
  • Delegate Uses In C#Jul 07, 2014. This article describes the uses of delegates in C#.Delegates in C# are powerful and versatile constructs that enable you to work with methods as first-class citizens. They provide a way to treat methods as objects, allowing you to pass them as parameters to other methods, store them in variables, and invoke them dynamically. Delegates are commonly used in various scenarios within C# programming.
  • Apply Custom Bindings Using Knockoutjs in ASP.Net ApplicationAug 29, 2013. In today's article you will learn about how to apply Custom Bindings using Knockoutjs in an ASP.NET application.
  • Delegates and Events in C#Nov 25, 2009. In this article I will explain about Delegates and Events in C#.
  • Caching FAQ's: Part IJan 22, 2009. In this section we will touch base on one of important concepts in .NET Caching.
  • Working with Delegates -Part IIMar 04, 2008. In this article we will discuss about delegates, what is multicast delegates and its contribution in Asynchronous communications and also how to work with long-running processes etc.
  • ASP.NET 2.0 IISTimerJan 30, 2008. This article describes usage of IISTimer component.
  • ASP.Net : AutoListMay 09, 2007. This small web application will demonstrate some useful functionality like AutoList, XML data is land to populate list at client side using xml and xpath query, transform xml data using XSLT at client side etc.
  • Using Delegates to Communication Between Windows FormsSep 04, 2006. Delegates are one of the wonderful features of .Net Framework. Their primary use is focused on support event handling and callback mechanism. In this article we will explore how to use delegate as callback support to make simple communication between deferent opened windows forms
  • Calling the Server-Side Method Asynchronously From Client ScriptJul 19, 2006. This article describes how to call the server-side method asynchronously from JavaScript with the use of Client Callbacks that is built in ASP.NET 2 so that the client browser receives the data dynamically without page postback.
  • Introduction to the MagicAjax.NET - The Magic Ajax Engine for .NETFeb 11, 2006. MagicAjax.NET is a free open-source framework, designed to make it easier and more intuitive for developers to integrate AJAX technology into their web pages, without replacing the ASP.NET controls and/or writing tons of JavaScript code.
  • RegisterWaitForSingleObject in ThreadPoolNov 04, 2005. In this article, we are going to describe how to use Threadpool to execute a thread at specified time interval or instant by using Threading AutoResetEvent.
  • Best Approach for Designing Interoperable Web ServiceMar 15, 2005. This article will clarify and explain in detail the different Web Service Design Methodologies as defined by the Web Services Standardization Groups, clarify the terms, highlight their differences.
  • A Scheduled Application Launcher Service in C# and .NETOct 06, 2004. This an article is on launching scheduled tasks. Not quite as exciting as launching a spaceship into outer space, but
hey, even astronauts have to automate some of their day to day activities.
  • Building and Using Asynchronous Web ServicesApr 16, 2004. In this article I will show how to build and use asynchronous Web services in your application and how you can use the callback method to make your application work in asynchronous state.
  • Oracle Data Provider for .NET : Part IIFeb 20, 2004. Oracle Data Provider for .NET (ODP.NET) is an implementation of a data provider for the Oracle database. ODP.NET uses Oracle native APIs to offer fast and reliable access to Oracle data and features from any .NET application.
  • Remote Objects: Part IMar 12, 2003. This demo shows how to create the remote objects with callback functions and use them in the window host.
  • Multithreading Part 4: The ThreadPool, Timer Classes and Asynchronous ProgrammingApr 16, 2002. In this article, I would discuss few more .NET classes and how and what role do they play a role in building multithreading applications.
  • Musical Teacher Web ServiceMar 04, 2002. A number of people / organizations have developed web services that are available for free to use.
  • N-Tier Development with Microsoft .NET : Part IIIFeb 25, 2002. The last installment in this series detailed more on the middle tier – business – façade and how to create a Web Service Export Proxy to have a physically separated middle tier.