Asp Control ASP.Net

<%@ Page Language="c#" %>

    void Page_Load()
    {
      string msg = "You have selected the following items:";
      if (chkCities.Items[0].Selected) 
          msg += chkCities.Items[0].Text + "";
      if (chkCities.Items[1].Selected) 
          msg += chkCities.Items[1].Text + "";
      if (chkCities.Items[2].Selected) 
          msg += chkCities.Items[2].Text + "";
          
      lblCities.Text = msg;
    }



    Check Box List Example


    
    
    
    Which city do you wish to look at hotels for?