Examples of List Controls in ASP.NET

In this article, I will demonstrate several Examples of List Controls in ASP.NET. In fact, ASP.NET provides an abstract class named ListControl with several properties and methods that are inherited by its derived classes. The following list provides the name of classes that inherit from the ListControl class. BulletedList CheckBoxList (See Example) RadioButtonList ListBox DropDownList …

Examples of Using Code Render Block In ASP.NET

This article contains some Examples of Using Code Render Block In ASP.NET. The following code shows an example to find the sum of two integers. Basically, here we are using the inline expressions also to display the value of variables a, b, and sum. Output The next example shows how to display the table of …

How to Install Visual Studio 2022 on Windows

In this article, I will explain How to Install Visual Studio 2022 on Windows. To begin with, first, visit the official website of Visual Studio. https://visualstudio.microsoft.com/downloads/. After that, select the Community Server Free Download. When you click on the Free Download button, the download begins. Once, the download completes, click on the setup file to …

Basic Programs in ASP.NET

The following list provides some of the Basic Programs in ASP.NET. Demonstrate the use of simple web controls in an ASP.NET application. In order to demonstrate the integration of multiple web forms develop an ASP.NET application. Create a basic student registration form in ASP.NET. In order to demonstrate the working of server-side validation controls, create …

A Brief Tutorial on Spring Framework

In this article on A Brief Tutorial on Spring Framework, I will explain Spring Framework, its benefits, and a simple example of an application using the Spring Framework. What is Spring? Basically, Spring is not a J2EE Framework. Instead, it is an open-source framework that supports the POJO (Plain Old Java Objects) based programming model. …

Methods of Object Detection Model Compression

In this article, I will discuss Methods of Object Detection Model Compression. Computer Vision (CV) is based on Object Detection. When we have some still images or videos, there are many types of objects in the image or a particular scene. However, not all objects are relevant, and we need to find the presence or …

Find the Longest Sequence of Negative Numbers and Find its Sum in Java

In this article, I will discuss how to Find the Longest Sequence of Negative Numbers and Find its Sum in Java. The following code example shows the use of a nested loop to find the longest sequence of negative number. The problem is stated as follows: We have an array of integers containing both positive …

A Mini Project on JDBC Operation

In this article on A Mini Project on JDBC Operation, the use of HDBC API in Java is explained through an application. To begin with, create the table Exam. The following list provides the details of the columns in the exam table. user_id: varchar(100) password: varchar(100) user_type: varchar(100) incorrect_attempts: Number(2) lock_status: Number(2) user_name: varchar(100) The …