Asp Control ASP.Net

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



    Calendar


    
    

           SelectionMode="DayWeekMonth" 
      CellPadding="7" 
      CellSpacing="5" 
      DayNameFormat="FirstTwoLetters" 
      FirstDayOfWeek="Monday" 
      NextMonthText="Next >" 
      PrevMonthText="< Prev" 
      ShowGridLines="True" 
      DayStyle-BackColor="White" 
      DayStyle-ForeColor="Black" 
      DayStyle-Font-Names="Arial" 
      OnSelectionChanged="Calendar1_SelectionChanged">
               BackColor="Black" 
        Font-Names="Arial Black" 
        ForeColor="White" />
               BackColor="Cornsilk" 
        Font-Bold="True" 
        Font-Italic="True" 
        Font-Names="Arial"
        ForeColor="Blue" />
               BackColor="Cornsilk" 
        Font-Names="Arial" 
        ForeColor="Red" />
               BackColor="LavenderBlush" 
        Font-Names="Arial" 
        ForeColor="Purple" />
               BackColor="LightGray" 
        Font-Names="Arial" 
        ForeColor="White" />
               BackColor="Cornsilk" 
        Font-Bold="True" 
        Font-Names="Arial" 
        ForeColor="Green" />
               BackColor="DarkGray" 
        Font-Names="Arial" 
        ForeColor="Yellow" />
               BackColor="Gray" 
        Font-Names="Arial Black" 
        ForeColor="White" 
        HorizontalAlign="Left" />
     
      
      
      
      
      
      
    

    


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 : System.Web.UI.Page 
{
   protected void Calendar1_SelectionChanged(object sender, EventArgs e)
   {
     lblTodaysDate.Text = "Today's Date is " +
         Calendar1.TodaysDate.ToShortDateString();
     if (Calendar1.SelectedDate != DateTime.MinValue)
       lblSelected.Text = "The date selected is " +
       Calendar1.SelectedDate.ToShortDateString();
     lblCountUpdate();
   }
  private void lblCountUpdate()
  {
    lblCount.Text = "Count of Days Selected:  " +
      Calendar1.SelectedDates.Count.ToString();
  }
}