ASP Net Controls ASP.Net Tutorial

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs"  Inherits="ListControlProgrammatic" %>



    Programmatic Iteration of ListControl


    
       
    

Choose multiple colors (use ctrl or shift): 

 
           SelectionMode="Multiple" Rows="6">        
        Red
        Magenta
        Yellow
        Green
        Cyan
        Blue
    
    
    
    

    


File: Default.aspx.cs
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class ListControlProgrammatic : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
    if (IsPostBack)
    {
      labResult.Text = "Colors chosen: 
";
      foreach (ListItem li in myList.Items)
      {
        if (li.Selected)
        {
          labResult.Text += "          labResult.Text += li.Value + "'>" + li.Text;
          labResult.Text += "
";
        }
      }
    }
}