Asp Control ASP.Net

<%@ Page Language=VB Debug=true %>

Sub calMonthChange(ByVal source As Object, _
    ByVal e As MonthChangedEventArgs)
    lblMessage.Text = "
You changed from month " _
        & e.PreviousDate.Month & " and year " _
        & e.PreviousDate.Year & " to month " _
        & e.NewDate.Month & " and year " _
        & e.NewDate.Year
End Sub



Writing Code that Fires when the Month Changes in a Calendar Control



Select a Date



    id="Mycal" 
    runat="server"
    cellpadding="3"
    cellspacing="3"
    onvisiblemonthchanged="calMonthChange"
/>



    id="lblMessage"
    runat="server"
    Font-Bold="True"
/>