共用方式為


CalendarDay.DayNumberText 屬性

定義

取得 CalendarDay 類別的執行個體所代表的日期日數的對等字串。 這個屬性是唯讀的。

public:
 property System::String ^ DayNumberText { System::String ^ get(); };
public string DayNumberText { get; }
member this.DayNumberText : string
Public ReadOnly Property DayNumberText As String

屬性值

String

這個類別的執行個體所代表的日期日數的對等字串。

範例

下列範例示範如何使用 DayNumberText 屬性,在 控制項上顯示選取的 Calendar 日期編號。

<%@ 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>
<%@ Page Language="VB" 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="VB" runat="server">
        Sub DayRender(source As Object, e As DayRenderEventArgs)
            
            If e.Day.IsSelected Then
                Label1.Text &= ChrW(60) & "br" & ChrW(62) & e.Day.DayNumberText
            End If
        End Sub 'DayRender  

  </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>

備註

DayNumberText使用 屬性,判斷這個類別實例所代表日期的日期日期的對等字串。 這允許您根據這個值,以程式設計的方式控制日期的外觀或行為。

適用於

另請參閱