Nested GridViews in C#.NET: How to display relational data together
First, you must understand the purpose of a GridView in the .NET framework. A GridView control displays rows of data in a table like structure. It displays one record from the table per grid row. This article explains how you can extend the functionality of this powerful control so that relational tables can be displayed together. This article shows you how to accomplish such a task. One reason to nest GridViews in .NET would be to display data in a one-to-many relationship. In some cases there ...
Read More
Joanna Smith
6/25/2009 11:48:00 AM
Comments(2)
Parsing data in C#
Parsing data in C# is a simple process, and can be done using some basic language syntax. Sub Strings provide this functionality, and when used properly can make data collection, or simple parsing operations a much easier task. First when parsing data from sources such as a web page, it is important to first remove all data at the beginning of the document which is unnecessary, in order to prevent the parsing utility from finding the wrong information. <?xml version="1.0" encoding="UTF-8"?>...
Read More
Levi
4/16/2009 10:59:00 AM
Comments(0)