Tuesday, 27 December 2011

CALENDAR

 <asp:Calendar ID="ClDate" runat="server" onselectionchanged="ClDate_SelectionChanged"> </asp:Calendar>

 protected void ClDate_SelectionChanged(object sender, EventArgs e)
    {
        Response.Write(ClDate.SelectedDate.ToShortDateString());
    }

No comments:

Post a Comment