WEBSWAPP Silverlight ASP.NET 3.5 ASP.NET 2.0 ASP.NET 1.0
Cascading Lists
ITemplate
DDL in GridView
G/V MultiSelect
Nested GridViews
RegExp
DataGrid Reorder
Events fire twice
Hyperlink Field
TextBox
UpdateParameters
MultiView
TreeView
C#-Nested GridViews VB-GridView
    
using System; using System.Collections.Generic; using System.Text; namespace WEBSWAPP_BLL { public class clsProdListItem { private string _value; private string _description; public clsProdListItem(string value, string description) { _value = value; _description = description; } public clsProdListItem() { } public string Value { get { return _value; } } public string Description { get { return _description; } } } }