CalendarDay.DayNumberText Property

Definition

Gets the string equivalent of the day number for the date represented by an instance of the CalendarDay class. This property is read-only.

public string DayNumberText { get; }

Property Value

The string equivalent of the day number for the date represented by an instance of this class.

Examples

The following example demonstrates how to use the DayNumberText property to display the selected day number on the Calendar control.

<%@ Page Language="C#" AutoEventWireup="True" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>ASP.NET Example</title>
<script language="C#" runat="server">

      void DayRender(Object source, DayRenderEventArgs e) 
      {
      
         if (e.Day.IsSelected)
         {
            Label1.Text += "<br />" + e.Day.DayNumberText; 
         }  
      
      }

   </script>
 
</head>
 
<body>
 
   <form id="form1" runat="server">
 
      <asp:Calendar id="calendar1" runat="server"
           SelectionMode="DayWeekMonth"
           WeekendDayStyle-BackColor="gray"
           OnDayRender="DayRender"/>
 
      <br /><br />

      You selected the following date(s): <br /> 

      <asp:Label id="Label1" runat="server"/>
                   
   </form>
         
</body>
</html>

Remarks

Use the DayNumberText property to determine the string equivalent of the day number for the date represented by an instance of this class. This allows you to programmatically control the appearance or behavior of the day, based on this value.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also