ASP Net Controls ASP.Net Tutorial

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



    CheckBoxList Control


    
    

    

CheckBoxList Control


    

Adding ListItems from an Array With a Value


     
          Item 1 
         
         
          Inner Item 4 
         
          Item 6 
     
    
    

    


File: Default.aspx.cs
using System;
using System.Data;
using System.Configuration;
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 Default_aspx : System.Web.UI.Page 
{
   protected void cblGenre_Init(object sender, EventArgs e)
   {
     string[] Genre = { "SciFi", "Novels", "Computers", "History", "Religion" };
     string[] Code = { "sf", "nvl", "cmp", "his", "rel" };
     for (int i = 0; i < Genre.Length; i++)
     {
       this.cblGenre.Items.Add(new ListItem(Genre[i], Code[i]));
     }
}