ASP.NET DayNumberText Property

Definition and Usage

The DayNumberText property is used to get a string representing the date number of the date.

Example

The following example shows how to get DayNumberText from the selected date in the calendar:

<script runat="server">
Sub DaySelect(obj As Object, e As DayRenderEventArgs)
  If e.Day.IsSelected Then
  Label1.Text = e.Day.DayNumberText
  End If
End Sub
</script>
<form runat="server">
<asp:Calendar id="cal1" runat="server"
OnDayRender="DaySelect" />
The selected date is:
<asp:Label id="Label1" runat="server"/>
</form>

Example

Get DayNumberText from the selected date in the Calendar control