Related resources for Event
  • Explain Adding a Loader in Next.js7/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
  • Apache Kafka with Dapr Bindings in .NET7/24/2024 7:13:08 AM. This content provides an in-depth overview of integrating Apache Kafka with Dapr Bindings for building distributed event-driven applications. It explains the key concepts of Apache Kafka, Dapr, and Da
  • Creating Triggers in SQL Server7/24/2024 4:44:18 AM. SQL Server triggers are automated procedures that execute in response to specific events, enhancing data integrity and enforcing business rules. They include DML triggers (AFTER, INSTEAD OF) for data
  • Azure Event Grid for Event-Driven Applications - Azure Essentials Series - Ep: 87/22/2024 10:41:49 AM. This episode'll explore the features, benefits, and best practices for using Azure Event Grid to build scalable and efficient event-based applications.
  • Implementing CQRS and Event Sourcing with .NET Core7/19/2024 10:48:48 AM. This article explores implementing CQRS (Command Query Responsibility Segregation) and Event Sourcing with .NET Core. It covers the basics of CQRS and Event Sourcing, including commands, queries, and
  • JavaScript – Events Bubbling – Illustrated7/11/2024 10:17:04 AM. Explore the intricacies of JavaScript event handling with a detailed exploration of event bubbling. This illustrated guide delves into how events propagate through the DOM, from capturing to bubbling
  • Dynamics 365 Customer Service: Disable the Resolve Case button7/11/2024 10:15:52 AM. This article guides you on restricting customer service associates from resolving cases with open activities or child cases in Dynamics 365. By creating a JavaScript Web Resource and customizing the C
  • Implementing v2 and v3 reCaptcha using React7/10/2024 9:09:35 AM. CAPTCHA (Completely Automated Public Turing test to tell Computers and Humans Apart) is a security measure to differentiate between humans and bots. reCAPTCHA, a Google tool, enhances this by generati
  • Custom Controls in C# Windows Forms7/8/2024 7:52:38 PM. Creating custom controls in C# Windows Forms enhances user experience by providing tailored functionalities. This guide covers deriving controls, combining multiple controls into composite ones, and i
  • AngularJS: Numbers Text Validation and cbTooltip in ASP.NET7/4/2024 9:46:21 AM. "In AngularJs applications, custom directives like allowOnlyNumber and allowOnlyText ensure input validation for numeric and text data, enhancing user interaction. Implementing cbTooltip with Boo
  • Understanding Data Binding in Angular6/28/2024 9:00:15 AM. Data Binding in Angular" explores the foundational concepts and practical applications of binding data between components and views in Angular applications. It covers two-way and one-way binding
  • TextBox In C#6/24/2024 8:59:31 AM. A TextBox control accepts user input on a Form. In this article, I will discuss how to create a TextBox control in Windows Forms at design-time as well as run-time. After that, I will continue discuss
  • Synchronizing Threads with AutoResetEvent in C# .NET6/23/2024 3:47:19 PM. In multithreaded C# applications, synchronizing thread execution is crucial to avoid race conditions and ensure controlled access to shared resources. The AutoResetEvent class helps manage this by act
  • Calculate and Display Total Amount Based on Checkbox States6/21/2024 5:23:57 AM. In web applications, event binding detects changes in checkboxes named advamount and Rentalamount, enabling dynamic updates based on user interaction. This involves managing the checkbox states to tra
  • Working With Radio Button Control In Winforms Application Using Visual Studio 20176/20/2024 10:10:31 AM. Learn how to effectively utilize radio button controls in your WinForms applications using Visual Studio 2017. This tutorial covers essential topics including adding radio buttons to forms, managing t
  • Introduction To Azure Function App6/20/2024 10:10:26 AM. Discover the power of Azure Function Apps, Microsoft's serverless computing service. Learn to leverage event-driven architecture for scalable, cost-efficient solutions in the cloud.
  • Learn Action and Func Delegates in C#6/19/2024 11:51:33 AM. Learn about Action and Func delegates in C# to master delegate usage for different scenarios. Action delegates are for methods that return void, while Func delegates handle methods with return values.
  • The Role of Nonces in Ethereum and EVM Transactions6/19/2024 9:33:55 AM. Explore the role of nonces in EVM-based blockchains like Ethereum. Learn how nonces ensure transaction security, prevent double-spending, and maintain blockchain integrity.
  • Tutorial: Working With Windows Forms6/16/2024 2:37:12 PM. Learn C# basics with these Windows Forms tutorials! From simple form creation to event handling, explore code examples with TextBox, Button, MessageBox, and more. Ideal for beginners in .NET and Visua
  • SPFx - Creating Custom Dialog Boxes Without A Javascript Framework6/14/2024 10:40:48 AM. Learn how to implement custom dialog boxes in SharePoint using SPFx. This tutorial explores extending the Base Dialog class without a JavaScript framework, leveraging npm packages for popup displays.
  • SSE in .NET Core API Real-time Updates in Angular6/13/2024 8:09:56 AM. The implementation of Server-Sent Events (SSE) in a .NET Core API to deliver real-time updates to an Angular application. You'll learn how to set up SSE in the backend to push live data streams an
  • Preventing CSRF Attacks in an ASP.NET Core MVC 6/13/2024 7:37:52 AM. Cross-Site Request Forgery (CSRF) is a type of attack that can force a user's browser to send unwanted requests to a web application on which the user is authenticated, potentially leading to unin
  • Learn Webhook vs. Callback URL6/13/2024 7:20:48 AM. 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
  • How To Creating a Live Chat App Using Socket.IO and Node.js6/13/2024 5:10:30 AM. Discover how to create a real-time chat app with Socket.IO and Node.js. This tutorial guides you through setting up the server, building the frontend, and enabling instant messaging between users. Ide
  • @Input() And @Output() Decorator In Angular6/12/2024 9:24:18 AM. Learn how to efficiently exchange data between components in Angular using @Input and @Output decorators. Master component communication for seamless parent-to-child and child-to-parent data transfer.
  • Fetching Data From XML File To SQL Database6/12/2024 7:01:05 AM. This article provides tips on creating an SQL table using an XML file and importing data into it. It covers creating a DataTable from an XML file, generating an SQL table from the DataTable, and using
  • Preventing XSS Attacks in ASP.NET Core MVC6/12/2024 6:56:55 AM. Build a secure ASP.NET Core MVC blog app with Entity Framework Core. Follow steps to create models, controllers, views, and implement client-side validation and sanitization to thwart XSS attacks. Acc
  • Display Calendar Events Using Graph API in SharePoint Framework6/7/2024 7:25:45 AM. Explore the process of integrating Microsoft Graph API to showcase calendar events within a SharePoint Framework web part. Follow steps to set up dependencies, scaffold the solution, manage permission
  • Azure Event Hub Implementation Using .Net Core Console App6/5/2024 8:11:22 AM. Implement real-time data processing with Azure Event Hub using a .NET Core console app. Utilize Azure's scalable messaging service for efficient event-driven architecture, enabling seamless data s
  • Improve Web Performance Using Debouncing in React.js6/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
  • Understanding Azure Cosmos DB Consistency Levels Using a Shopping Cart Application6/1/2024 8:52:03 AM. Explore Azure Cosmos DB's consistency levels through a shopping cart application to understand how different settings impact data integrity, availability, and latency. Learn the trade-offs between
  • TreeView Control in ASP.NET5/31/2024 11:53:08 AM. ASP.NET's TreeView control offers hierarchical data representation for intuitive navigation. Customize nodes, handle events, and bind data seamlessly, enhancing user experience and simplifying com
  • Using Prompt Shield to Prevent Prompt Injection Attacks5/30/2024 11:44:42 AM. This article explores Prompt Shield, an advanced security solution created to protect AI systems from Direct and Indirect Prompt Injection Attacks. Utilizing cutting-edge detection and prevention mech
  • Azure Data Factory: Implementation of Blog Event Trigger for Data Movement5/28/2024 7:39:33 AM. This video shows how to implement blog event trigger in the azure data factory to perform data movement from source to destination.
  • Null-Conditional Operators in C# - Simplifying Null Checks & More5/27/2024 11:46:08 AM. Explore the null-conditional operators in C# 6.0, which simplify null checks and prevent NullReferenceExceptions. Learn about the ?. operator, null-conditional indexing, and combining these with null-
  • Integrating FullCalendar in .NET Core App with JavaScript5/27/2024 11:12:56 AM. Integrate FullCalendar with .NET Core to create dynamic, user-friendly calendars for scheduling and event management. This guide covers setup, JavaScript customization, and backend integration, provid
  • How to re-render the View When the Browser is Resized in ReactJS5/24/2024 9:59:44 AM. To re-render a ReactJS view upon browser resize, utilize the use effect hook to add a resize event listener. Upon resizing, update state variables triggering a re-render of the component, ensuring res
  • Post Data To Controller Without Page Refresh In ASP.NET MVC5/24/2024 9:14:45 AM. Submit data to ASP.NET MVC controller without page refresh using AJAX. Utilize JavaScript/jQuery to send FormData asynchronously, updating parts of the page dynamically, and enhancing user experience.
  • Client Script - OnChange with Realtime Scenarios and Use Cases5/24/2024 4:31:40 AM. Harness the power of client-side scripting with OnChange events for dynamic user experiences. Real-time scenarios include form validation, live data updates, and interactive interfaces, enhancing user
  • What are the Pointer Events supported in ReactJS?5/23/2024 6:37:42 AM. React supports a wide range of Pointer Events, which provide a unified way to handle input from various pointing devices such as a mouse, touch, or pen. Pointer Events offer more detailed information
  • Type-safe development with React TypeScript Fundamentals5/21/2024 6:53:11 PM. Find out how TypeScript and React work together with Ziggy Rafiq's comprehensive guide. Learn how to use type-safe props, state management, event handling, and component lifecycles for robust and
  • How Do You Pass an Event Handler to a Component in ReactJS5/21/2024 6:41:58 AM. Passing event handlers to React components involves defining them in the parent, passing them as props to the child, and utilizing them in the child component's event listeners for interactive app
  • How JSX Prevents Injection Attacks in ReactJS5/21/2024 4:49:53 AM. JSX in React prevents injection attacks by automatically escaping embedded values and converting them to strings before rendering. This built-in mechanism neutralizes potentially malicious code, ensur
  • Prevent Function Call Repetition in ReactJS for Efficient Development5/20/2024 6:12:07 AM. In React, events follow two phases: capture and bubble. Capture phase descends from root to target, while bubble phase ascends. React allows specifying listeners for both phases, enhancing event contr
  • What are Capture Phase Events in ReactJS?5/17/2024 8:48:31 AM. In React, events follow two phases: capture and bubble. Capture phase starts from the document root to the target, while bubble goes from target to root. React allows handling events in both phases.
  • Usage of “Required” Keyword in C#5/17/2024 4:21:25 AM. In this article, we will learn about the usage of required keywords in C#. In C# 11, the `required` keyword enforces the initialization of properties and fields within classes, records, or structs, en
  • Show/Hide Property Pane Component Based On Another Component's Value In SPFX5/16/2024 9:29:27 AM. In SharePoint Framework (SPFX), customize property panes by dynamically showing or hiding components based on the values of other components. Utilize React's conditional rendering for efficient UI
  • What is the Difference Between HTML and React Event Handling?5/14/2024 9:21:24 AM. HTML and React differ in event handling approaches. In HTML, events are added directly to elements, while React uses synthetic events and methods within component classes, providing better organizatio
  • How JSX Prevents Injection Attacks5/14/2024 5:17:21 AM. JSX in React offers protection against injection attacks by automatically escaping dynamic content, preventing it from being interpreted as executable code. Learn how JSX safeguards your UI with code
  • Events in .NET5/9/2024 11:52:53 AM. An event is a message sent by an object to signal the occurrence of an action. This action caused by the user interaction such as button click, mouse click etc.
  • Apply Single JavaScript Function to Multiple Textboxes For Validation5/8/2024 10:17:45 AM. Validate multiple textboxes efficiently in JavaScript using a single function. Employ event listeners for input events, utilize DOM manipulation to access textbox values, and apply validation rules su
  • Road To AZ-204 - Developing Event Based Solutions5/7/2024 11:30:16 AM. This article's intention is to explain the main skills measured in this sub-topic of the AZ-204 Certification. Azure Event Grid, Azure Notification Hub, and Azure Event hub are the main components
  • Weak Event Pattern and Memory Leak in .Net 4.55/1/2024 11:11:21 AM. The code demonstrates the issue of memory leaks due to unregistered event handlers and introduces the weak event pattern in .NET 4.5 as a solution. It provides an example of an event source and listen
  • Microsoft Enterprise Instrumentation Framework(EIF) - Quick Guide5/1/2024 11:09:43 AM. Explore Microsoft Enterprise Instrumentation Framework (EIF) with our Quick Guide. Learn to monitor, log, and optimize application performance effortlessly, ensuring robustness and efficiency in your
  • Use CheckBox Inside ASP.NET GridView4/30/2024 11:46:15 AM. Utilize CheckBox controls within ASP.NET GridView for versatile data selection and manipulation. Enhance user interaction and data management by integrating checkboxes seamlessly into your web applica
  • Introducing RX For Collections4/30/2024 10:45:39 AM. Discover the power of Reactive Extensions (Rx) for efficient and responsive collection handling. Learn how Rx enables event-driven, asynchronous data processing, transforming collections into dynamic,
  • Preventing XSS in AJAX Web Apps: Best Practices & Prevention4/30/2024 9:30:39 AM. Explore the risks of XSS (Cross-Site Scripting) in AJAX (Asynchronous JavaScript and XML) interactions. Understand how malicious scripts can exploit client-side vulnerabilities, necessitating robust i
  • Handling UI Control's Events in ViewModel (Prism 5.0)4/29/2024 9:58:03 AM. This article explains how to data bind a command from my viewModel to an event. In other words, how to make the code-behind not contain any code related to event handlers of a control.
  • Event Handling In .NET4/27/2024 4:15:10 AM. Explore event handling in .NET, a fundamental aspect of event-driven programming. Learn about event handlers, delegates, and the EventSource class, diving into the publisher-subscriber pattern and bes
  • Structured Logging With Serilog and Seq: Part 24/25/2024 8:31:14 AM. Learn structured logging with Serilog using Seq as a logging sink. Utilize HTTP calls to write logs, enrich log messages with additional properties, and query logs easily. Seq provides features like
  • Unloading Assemblies in C#4/25/2024 7:56:13 AM. Unloading an Application Domain is crucial for releasing resources. Unlike assemblies, Application Domains can be unloaded, aiding in resource management. However, the default CLR-created domain is im
  • Exploring About Azure Function4/23/2024 8:34:53 AM. Explore the power of Azure Functions, Microsoft's serverless computing offering in the cloud. Dive into event-driven programming, scalability, and seamless integration with Azure services.
  • .NET Remoting - Events, Events? Events!4/23/2024 8:29:21 AM. Explore different strategies for firing events across servers and clients concurrently in .NET, including .NET native events with late-binding, interface-based approaches, and utilizing a broadcast en
  • Delegates in .NET4/22/2024 8:57:01 AM. 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.
  • How to Work With TFS - TFS Build Agent, Build Definition, TFS Build Custom Task 4/22/2024 8:53:53 AM. Learn to create a custom task in a class library, execute it after a TFS build succeeds. Setup TFS build agent, define build process, and run TFS build seamlessly. Ensure successful build execution wi
  • Handling Events In AngularJS4/21/2024 2:20:18 PM. Handling events in AngularJS involves binding HTML elements to specific AngularJS expressions or functions using directives like ng-click, ng-change, or ng-submit. This allows for interactive user exp
  • Site And Site Collection Retention Policy In SharePoint4/18/2024 10:01:40 AM. Learn how SharePoint 2013's Site Retention Policy helps manage site lifecycles, including closure and deletion. Understand Site Policies, apply them to sub-sites, set deletion and closure events,
  • Learn Angular 8 Step By Step in 10 Days – Data Binding (Day 3)4/17/2024 9:36:51 AM. Google released the new version of Angular, i.e., Angular 8 just a month ago. This new release of Angular contains many upgrades and new features. So, with the help of this learning series, we will ex
  • Sharing Data Between Components In Angular4/16/2024 5:33:03 AM. Share data between Angular components efficiently using Input and Output decorators, EventEmitter, and component interaction techniques. Explore parent-child and child-parent communication methods to
  • Page Life Cycle in ASP.NET4/13/2024 6:15:29 PM. Learn about the ASP.NET page life cycle events including preinit, init, preload, load, prerender, and savestatecomplete. Understand their order of execution and their significance in web development.
  • Get And Create Google Calendar Events In .NET4/12/2024 11:15:23 AM. Manage Google Calendar events seamlessly in .NET using Google.Apis.Calendar.v3. Retrieve, create, update, and delete events with ease, integrating Google Calendar functionality into your .NET applicat
  • Blazor Component: Creation, Lifecycle, Nesting, & UI Integration 4/11/2024 10:41:35 AM. Blazor Components offer a modern approach to web development by utilizing Razor syntax and C#. They enable building interactive and reusable UI elements with data binding and event handling.
  • Xamarin.Forms - EventToCommand Behavior in MVVM ViewModel 4/11/2024 10:35:24 AM. Xamarin.Forms EventToCommand behavior facilitates MVVM by binding events to ViewModel commands. It streamlines event handling, promoting the separation of concerns within the application architecture.
  • Leveraging Server-Sent Events (SSE) with Angular and Node.js4/11/2024 5:25:47 AM. Server-Sent Events (SSE) is a powerful technology that enables servers to push real-time updates to web clients over HTTP.
  • Best Practices for Maintaining Security and Preventing Vulnerabilities in C#4/9/2024 5:54:03 PM. Explore essential security practices in C# programming with Ziggy Rafiq, covering password hashing, input validation, SQL injection prevention, cryptography, HTTPS, secret management, and staying upda
  • What is Data Binding and Types of Data Binding in Angular?4/8/2024 4:29:17 AM. Data binding is a core concept in Angular that allows developers to establish a connection between the application's data. In this article, we'll delve deep into the various types of data bind
  • Asynchronous Communications Using RabbitMQ Message Broker4/4/2024 11:37:39 AM. In this article, we will explore asynchronous communication techniques leveraging RabbitMQ, a powerful message broker. Discover how RabbitMQ facilitates reliable, scalable message routing in distribut
  • Limit the User to Typing Only Letters Into a TextBox Using JavaScript4/3/2024 9:39:34 AM. Learn how to implement client-side input validation in JavaScript to restrict users from entering anything other than letters (including spaces) in specific input fields like Name, Father's Name,
  • Learn Events Handling in React JS4/2/2024 8:51:00 AM. Event handling in React enables dynamic user interactions. It employs event handlers, synthetic events, passing event arguments, common event handlers, preventing default behavior, event bubbling, and
  • Explain about Event Handling in C# .Net4/2/2024 4:20:04 AM. In the world of C# programming, events are a powerful mechanism that facilitates communication between different components of an application. In this comprehensive guide, we'll delve deep into t
  • Data Binding in Angular3/23/2024 4:04:12 PM. Data binding serves as the communication bridge between the template (representing the view) and the component (housing the application's logic and data).
  • Ensuring Secure Coding in C#: Maintaining Security 3/22/2024 10:11:52 AM. The article on secure coding in C# applications, written by Ziggy Rafiq, is a must-read for developers who want to fortify their applications against potential vulnerabilities and security threats. By
  • Learn about Asynchronous Events in C#3/20/2024 5:49:33 AM. Explore asynchronous event invocation in C#, addressing threading challenges with event handlers. Learn about the synchronous nature of events, concurrency issues, and solutions using TPL and TAP. Id
  • Using FullCalendar For Dynamics 365 Portals3/15/2024 8:59:20 AM. Discover how to enhance Dynamics 365 Portals with FullCalendar integration. Effortlessly manage events, appointments, and schedules directly within your portal interface. Elevate user experience by pr
  • How to Detect Event on Clicks Outside in Vue.js3/7/2024 9:11:46 AM. Detecting clicks outside an element in Vue.js is crucial for scenarios like closing dropdown menus or modals. This guide provides a step-by-step process, ensuring efficient handling of such events.
  • A Simple Calculator In React.js3/7/2024 8:55:05 AM. In this article, we will explore building a basic calculator using React.js, leveraging its component-based structure and state management. Dive into JSX syntax, event handling, and UI design to creat
  • Remote Access Of The Database Using SQL Server 3/7/2024 8:36:49 AM. Remote access to SQL Server databases enables users to connect to and manage databases from a location outside the physical server. It involves configuring network settings, security measures like aut
  • Creating Funnels Using Custom Events in Application Insights3/7/2024 4:52:42 AM. Learn to add custom events to a simple .NET application's telemetry and then use these events to create funnels that identify users who complete a specific sequence of steps in your application.
  • Binding Event Handler And Method As Props In React3/6/2024 10:40:52 AM. Binding event handlers and methods as props in React involve passing functions from parent components to child components, ensuring proper binding to maintain the correct context. This pattern allows
  • Power of Typescript Scroll Events3/6/2024 4:42:22 AM. The onscroll event in JavaScript is a powerful tool that gets triggered when a scrollbar is used for an element. This event is particularly useful for creating dynamic and interactive web experiences,
  • Master Scroll Events: ECMAScript 8 (ES8) and TypeScript3/5/2024 11:33:16 AM. We'll explore how to adapt and extend the scroll event examples using ECMAScript 8 (ES8) features and the TypeScript language. These advanced techniques provide developers with additional tools an
  • Importing Access Database into SQL Server 20123/5/2024 10:40:07 AM. Destructuring simplifies value extraction from objects/arrays. React's event handling enables dynamic responses to user interactions, crucial for interactive UIs. Components manage state/props, fa
  • Prevent MS Flow Retrigger on Item Creation/Modification3/5/2024 10:18:28 AM. This document introduces MS Flow, a prominent Office 365 application facilitating task automation and intricate business logic development based on list item events. It addresses the challenge of recu
  • Disable Right Click Directive in Vue.js3/5/2024 9:51:07 AM. In Vue.js, disable right-click functionality by creating a custom directive. Bind an event listener to contextmenu, preventing its default behavior. Easily implement this directive for specific elemen
  • Destructuring And Event Handler In React3/5/2024 8:59:40 AM. Destructuring in React allows efficient extraction of values from objects or arrays. Event handlers manage user interactions, like clicks or input changes. They're essential for interactive UIs in
  • Peer-To-Peer Chat Program Using Asynchronous Socket3/1/2024 9:34:58 AM. Discover the essence of peer-to-peer chat through asynchronous sockets. Learn to design interfaces, implement real-time messaging, and ensure security for seamless communication in decentralized netwo
  • Vue.js Custom Events: Enhance Parent-Child Communication with $emit()3/1/2024 5:39:10 AM. Vue.js, with its powerful reactivity system, allows seamless communication between parent and child components. While props enable data flow from parent to child, the $emit() method serves as a bridge
  • Introduction to Interfacing Win Forms with VS Add-ins2/29/2024 9:16:02 AM. Learn to integrate Visual Studio Add-ins with Win Forms for enhanced user interaction. Utilize Form controls, event handling, and DTE to create a seamless interface. Manage windows, buttons, and lists
  • Show Folder Contents and Compare with Another Folder2/28/2024 11:40:36 AM. This application provides a convenient way to display and compare the contents of two folders. Utilizing a web application interface, users can easily navigate through the files in the specified direc
  • How to Communicate from Child to Parent Using Events in Vue.js2/27/2024 6:33:42 AM. In Vue.js, child components can communicate with parent components through custom events. Child components emit events using $emit, and parent components listen and respond accordingly, enabling dynam