In this article I will try to explain you the features of DataReader object and how DataReader object works in ASP.Net 2.0. DataReader object is a simply used to read data from the result sets and because of this feature we call this object as for... Author:
In this article I’ll try to explain how you can use the DataTable object as a container object for data from a DataReader object and to display this data in a GridView control in ASP.NET 2.0.
The DataReader and the DataSet are two very different ways to access data using ADO.NET. The DataReader provides a direct one-way connection to the data and is the fastest way to read data from a database. Author: Steven Smith Code: ASP.NET Beta 2 & C#
We can't really say that there is a clear best practice yet, but Microsoft most often recommends ADO.NET DataSets as the way to go. I, on the other hand, prefer to use custom classes and collections—that is, a custom object-oriented format. Author: Jimmy Nilsson Code: ASP.NET v1.0 & VB
In ASP.NET you can use a single SqlDataReader to populate multiple web controls. This article demonstrates how to populate 3 DropDownList controls Author: K. Scott Allen Code: ASP.NET v1.1 & C#
ADO.NET DataReader is a read only and forward only cursor that allows you to iterate through the records very fast.This articles throws light on some of such things to watch for while you code and explains general dos and don'ts about DataReader.
Author: Bipin Joshi Code: C#