ASP Net Controls ASP.Net Tutorial

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



    Untitled Page


    
  

                     ID="Listbox1" 
                 SelectionMode="Multiple" 
                 Rows="5">
        Option 1
        Option 2
    
    
    
        Option 1
        Option 2
    
    
                          ID="CheckboxList1" 
                      RepeatColumns="3" >
        Option 1
       Option 2
    
    
                             ID="RadiobuttonList1"
                         RepeatDirection="Horizontal" 
                         RepeatColumns="2">
        Option 1
        Option 2
    
    
  

    


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 SelectableListControls : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
    if (!Page.IsPostBack)
    {
      for (int i = 3; i <= 5; i++)
      {
        Listbox1.Items.Add("Option " + i.ToString());
        DropdownList1.Items.Add("Option " + i.ToString());
        CheckboxList1.Items.Add("Option " + i.ToString());
        RadiobuttonList1.Items.Add("Option " + i.ToString());
      }
    }
  protected void Button1_Click(object sender, System.EventArgs e)
  {
    Response.Write("Selected items for Listbox1:
");
    foreach (ListItem li in Listbox1.Items)
    {
      if (li.Selected) Response.Write("- " + li.Text + "
");
    }
    Response.Write("Selected item for DropdownList1:
");
    Response.Write("- " + DropdownList1.SelectedItem.Text + "
");
    Response.Write("Selected items for CheckboxList1:
");
    foreach (ListItem li in CheckboxList1.Items)
    {
      if (li.Selected) Response.Write("- " + li.Text + "
");
    }
    Response.Write("Selected item for RadiobuttonList1:
");
    Response.Write("- " + RadiobuttonList1.SelectedItem.Text + "
");
  }
}