CalendarDay.DayNumberText Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene la stringa equivalente al numero del giorno della data rappresentata da un'istanza della classe CalendarDay. Questa proprietà è di sola lettura.
public:
property System::String ^ DayNumberText { System::String ^ get(); };
public string DayNumberText { get; }
member this.DayNumberText : string
Public ReadOnly Property DayNumberText As String
Valore della proprietà
La stringa equivalente al numero del giorno della data rappresentata da un'istanza di questa classe.
Esempio
Nell'esempio seguente viene illustrato come usare la DayNumberText proprietà per visualizzare il numero di giorno selezionato nel Calendar controllo.
<%@ 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>
Commenti
Utilizzare la DayNumberText proprietà per determinare l'equivalente stringa del numero di giorno per la data rappresentata da un'istanza di questa classe. In questo modo, è possibile controllare a livello di codice l'aspetto o il comportamento del giorno, sulla base di questo valore.