ASP.NET SelectedDate Property
Definition and Usage
The SelectedDate property is used to set or return the selected date on the calendar.
Example
Example 1
The following example outputs the selected date when a date is chosen:
<script language="VB" runat="server"> Sub Change(obj As Object, e As EventArgs) Response.Write("Date: ") Response.Write(cal1.SelectedDate.ToShortDateString()) End Sub </script> <form runat="server"> <asp:Calendar id="cal1" runat="server" OnSelectionChanged="Change" /> </form>
Example
- Set the SelectedDate of Calendar Control