ASP Net Controls ASP.Net Tutorial

<%@ Page Language="C#" Debug="true" Trace="true" %>


const int _itemCount = 10;
        
string GetDisplayItem(int n)
{
    return "Item #" + n.ToString();
}
protected override void OnLoad(EventArgs e)
{
    _displayList.Items.Clear();
    
    for (int i=0; i<_itemCount; i++)
        _displayList.Items.Add(new ListItem(GetDisplayItem(i)));
    
    _messageH2.InnerText = "Total number of items = " + _itemCount.ToString();
    
    base.OnLoad(e);
}    



    Simple page with controls


    
    

Test ASP.NET 2.0 Page with controls


    
        Sample Item 1
        Sample Item 2
        Sample Item 3
    
    Total number of items = xx