AWS, Cloud Computing

Features and Benefits of Amazon S3 Bucket

In this article on Features and Benefits of Amazon S3 Bucket, I will explain Amazon S3 Bucket and its features. Basically, S3 is a storage service provided by Amazon. S3 stands for Simple Storage Service. It provides scalability required by the application. Moreover, Amazon S3 is suitable for customers of all sizes. In fact, a …

HTML

How to Create a Multi-Page Document in HTML

In this article, I will describe How to Create a Multi-Page Document in HTML. For this purpose, we will develop an HTML application that contains a home page and five other pages. Accordingly, the problem statement is given below. Create an HTML document containing following five pages. Create a web page containing information about formatting …

JavaScript

How to Use ID and Class Attributes in JavaScript?

In this article, I will explain How to Use ID and Class Attributes in JavaScript. ID Attribute Basically, the ID attribute uniquely identifies an HTML element. For the purpose of styling an HTML element in a specific manner, we use its ID. Moreover, we can access an HTML element in JavaScript using its ID. In …

JavaScript

How to Handle Mouse Events in JavaScript

In this article, I will explain How to Handle Mouse Events in JavaScript. The following code example shows handling five mouse events – mouse up, mouse down, mouse enter, mouse leave, and mouse move. When user presses the mouse button, mouse down event occurs. Similarly, when user releases the mouse button, mouse up event occurs. …

ASP.NET

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 …