Arrow Functions in JavaScript

Basically, Arrow Functions in JavaScript provide us a way to simplify coding the user-defined functions. Further, they let us define anonymous functions. Since, arrow functions provide us a way to write shorter syntax, by including arrow functions in script single statement functions can be created fast and prevent unnecessaey coding. However, there are certain differences …

Code Render Block in ASP.NET

Examples of Using Code Render Block: https://www.programmingempire.com/examples-of-using-code-render-block-in-asp-net/ This article describes Code Render Block in ASP.NET. Basically, a Code Render Block in ASP.NET refers to the inline code that we use in the ASPX page along with server-side and client-side tags. What is Code Render Block? Basically, a code render block is a block containing programming statements within a …

ASP.NET Core Features and Advantages

In this post on ASP.NET Core Features and Advantages, I will discuss the core features of ASP.NET technology that make it a choice for web developers. ASP.NET Core Basically, ASP.NET Core is another version of ASP.NET. Also, it is open-source and available on Windows, Linux, and MacOS platform. The following section describes ASP.NET Core Features and Advantages. ASP.NET Core Features Open-Source Excellent Performance Support for Containerization Several Hosting Options Dependency …

Understanding Blockchain Concepts

In this post on Understanding Blockchain Concepts, I will explain what is blockchain and its application. What is a Blockchain? Basically, a blockchain is a distributed database. Significantly, Decentralization and Scalability are the two most important features of a Blockchain. As the name suggests, a Blockchain is a chain of blocks with each block containing …

JavaScript Code Examples

The following section provides several JavaScript Code Examples. addEventListener() Sometimes we want to attach an event listener to an HTML element dynamically. For this purpose, we can use the addEventListener() method. Even, it is possible to attach an event listener to a paragraph or div element. See Example. appendChild() Basically, this method helps us to append a child …

Edge Detection Using OpenCV

In this post on Edge Detection Using OpenCV, I will explain an important image processing function known as edge detection. Basically, edge detection results in a new image that contains the outlines or edges of the given image. Canny Edge Detection Method Basically, Canny Edge Detection is a step-by-step procedure that requires the image to …

Adding Images Using Image Control

In this post on Adding Images Using Image Control, I will demonstrate the use of Image Control for creating a Web Page in ASP.NET. Basically, the Image Control available in ASP.NET allows us to display an image on the web page. Hence, it displays the image as the data. Therefore, we can display images within any container element of HTML …