WEBSWAPP Silverlight ASP.NET 3.5 ASP.NET 2.0 ASP.NET 1.0
Cascading Lists
AJAX ToolKit
Hierarchies
Nested ListViews
    
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace WEBSWAPP.Website.Data { public class NavigationalLink { public string Id {get;set;} public LinkTypes LinkType { get; set; } public string ToolTip { get; set; } public string Text { get; set; } public string ButtonStyle { get; set; } public string HoverButtonStyle { get; set; } public TechnologyTypes Technology { get; set; } public string ParentNavigationalLinkId { get; set; } public int Position { get; set; } public string Url { get; set; } public bool SuppressSourceCode { get; set; } } }