CalendarDay.DayNumberText 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
CalendarDay 클래스의 인스턴스에서 나타내는 날짜의 날짜 숫자에 해당하는 문자열을 가져옵니다. 이 속성은 읽기 전용입니다.
public:
property System::String ^ DayNumberText { System::String ^ get(); };
public string DayNumberText { get; }
member this.DayNumberText : string
Public ReadOnly Property DayNumberText As 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 이 클래스의 인스턴스에서 나타내는 날짜의 날짜 일 수의 해당 하는 문자열을 확인 하는 속성입니다. 이 속성을 사용하면 이 값을 기준으로 날짜의 모양이나 동작을 프로그래밍 방식으로 제어할 수 있습니다.