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 …

Using MD5 Hash Algorithm

In this post on Using MD5 Hash Algorithm, I will explain the MD5 algorithm for computing hash code, the MD5 abstract class in .NET, and its implementation for computing hash code. Basically, the Message Digest algorithm named MD5 generates a 16-byte (128-bit) hash code. This algorithm is available with the MD5 class in ASP.NET. Further, the namespace System.Security.Cryptography defines this …

ItemDataBound Event in DataList

Basically, the ItemDataBound Event in DataList is one of the several events that occur when an item is data-bound to the DataList control. The following article shows an application of the ItemDataBound event. Before proceeding further, you can get a basic understanding of the DataList control by going through the following topics. Exploring DataList Control …

More Features of DataList in ASP.NET

In this article, I will discuss some More Features of DataList in ASP.NET. Earlier, I have explained important properties of DataList such as templates, styles, and properties related to data keys that you can find here. Read-Only Fields in DataList Control In fact, the DataList control contains five read-only fields that we use in various event handler functions. For …

A Simple Example of Using a DataList Control in ASP.NET

To illustrate the DataList control, in this article, I will demonstrate how to create a DataList control. Basically, it is A Simple Example of Using a DataList Control. Subsequently, I will show more detailed examples. In order to find basic information about the DataList control, you can read this article on Exploring DataList Control. Specifically, it tells about all templates …

ASP.NET Practice Exercise

ASP.NET is a technology for creating dynamic websites. Since, learning any technology starts by writing code, here is an ASP.NET Practice Exercise, that you can use to learn ASP.NET. ASP.NET Practice Exercise Since, the simplest web page requires the use of these two basic controls, write a program for using Label and TextBox controls. Another important control from Visual …

Exploring DataList Control in ASP.NET

To begin with, in this post on Exploring DataList Control in ASP.NET, I will explain the DataList control. In short, it is one of the feature-rich, lightweight data-bound control available in ASP.NET. In general, we use the DataList control to display the multiple rows of data. Although, ASP.NET offers several data-bound controls the DataList control provides a much greater degree of …