Archive for the 'Engineering' Category
Hierarchies with Nested Repeaters in ASP.NET
Thursday, July 6th, 2006In most every project I have ever worked on there is some type of hierarchy to the data and ultimately I need to represent this data in some hierarchical fashion to the user. Nested repeaters work very well in these situations and are quite easy to implement.
I am a big proponent of the repeater control […]
List Management with Generic List in .NET
Monday, June 12th, 2006I work with collections of objects very frequently and with version 1.1 of the Framework I would normally use the ArrayList class to manage them. With an ArrayList you are able to hold a collection of just about any type of object but there is no help with type safety. In version 2.0 of the […]