ASP.NET

Creating a DataTable from a DataReader in ASP.NET

Although, there are many ways to create a DataTable object, in this article I will explain Creating a DataTable from a DataReader object. To begin with, first I will explain the DataReader object in brief. DataReader in ADO.NET Basically, a DataReader object in ADO.NET represents the connected approach of data access. A DataReader object provides read-only and forward-only …

Python

Image Contrast Enhancement using Histogram Equalization

In this article on Image Contrast Enhancement using Histogram Equalization, I will explain the significance of Histogram Equalization. Basically, Histogram Equalization is an image processing technique. A histogram represents the intensity distribution of an image graphically. Therefore, it contains the quantified value of the number of pixels representing each intensity value. Accordingly, Histogram Equalization (HE) broadens the …

ASP.NET

Edit a Record Using DataGrid Control in ASP.NET

The following example demonstrates how to Edit a Record Using DataGrid Control in ASP.NET. Before proceeding further, you can go through these examples on DataGrid control that I have posted earlier. CRUD Operations with DataGrid in ASP.NET Creating Columns in a DataGrid Control Insert a Record Using ItemCommand Event in DataGrid Meanwhile, we use a TemplateColumn as before …

ASP.NET

Insert a Record Using ItemCommand Event in DataGrid

This article demonstrates how to Insert a Record Using ItemCommand Event in DataGrid. Before proceeding further, you can go through these articles for an understanding of the DataGrid control. CRUD Operations with DataGrid in ASP.NET Creating Columns in a DataGrid Control Since we are using the same database table Items in this example, there are four fields …