DataGrid inside a DataGrid ASP.NET / Site Navigation
This tutorial will teach you how to place and bind a DataGrid inside another DataGrid. The binding of the inner DataGrid will be done depending on the row of the parent DataGrid.
Basics of using DataGrid ASP.NET / Controls
This tutorial introduces you to the DataGrid control. It tells you about the BoundColumn and shows an example of how to use it.
Displaying XML Data in an ASP.NET page : Binding DataGrid to an XML File ASP.NET / XML Web Services
The .net framework provides the Dataset object which is designed to handle data abstractly independent of the data source. The DataSet can handle data from variety of sources like SQL, XML etc. In this article we'll show you how to bind a data grid control to data in an XML file using the DataSet class.
Displaying XML to DataGrid ASP.NET / XML Web Services
In this source code we will look at how to read an XML data source and how to put it on our ASP.NET page. For this example you can use a sample XML file putting same folder with our source code.
Optimizing Your Asp.Net Pages for Faster Loading and Better Performance. ASP.NET / Site Navigation
If you read the internet and all of the websites dedicated to Asp.Net you will inevitably read about the wonders of the DataGrid, DataList, and Repeater controls. While each of these has its place, if you are only displaying data there is a much faster and more efficient means to do so.
A timesaver control: GridView ASP.NET / .NET and Databases
ASP.NET 2 has got several new foucs on development. Probably gridView will be your best friend of you. The GridView control automates many of the features of the DataGrid control. You have a full control on viewing, sorting, paging and editing. This sample is only a beginner guide but I hope that you will discover many features of gridView.
Performing custom validation ASP.NET / Web Forms
Demonstrates how to use custom validation on a form by checking to see if a string in a TextBox is not the same with a string from an array (or database), case in which it displays 'This name is already taken'.