SelectedDatesCollection.Count 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
SelectedDatesCollection 컬렉션의 DateTime 개체 수를 가져옵니다.
public:
property int Count { int get(); };
public int Count { get; }
member this.Count : int
Public ReadOnly Property Count As Integer
속성 값
DateTime의 SelectedDatesCollection 개체 수입니다.
구현
예제
다음 코드 예제를 사용 하는 방법에 설명 합니다 Count 속성의 날짜 수를 확인 하는 SelectedDatesCollection 컬렉션입니다. SelectedDates 의 속성을 Calendar 컨트롤의 인스턴스가 SelectedDatesCollection 클래스입니다.
<%@ 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 Button_Click(Object sender, EventArgs e)
{
if (Calendar1.SelectedDates.Count > 0)
{
Label1.Text = "Selected date(s) are: ";
for (int i = 0; i < Calendar1.SelectedDates.Count; i++)
{
Label1.Text += " " + Calendar1.SelectedDates[i].Day.ToString();
}
}
else
Label1.Text = "No dates selected!!";
}
</script>
</head>
<body>
<form id="form1" runat="server">
<asp:Calendar ID="Calendar1" runat="server"
SelectionMode="DayWeekMonth"/>
<hr />
<asp:Button id="Button1"
text="Display Selected Dates"
OnClick="Button_Click"
runat="server" /> <br /><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 Button_Click(sender As Object, e As EventArgs)
If Calendar1.SelectedDates.Count > 0 Then
Label1.Text = "Selected date(s) are: "
Dim i As Integer
For i = 0 To Calendar1.SelectedDates.Count - 1
Label1.Text &= " " &+ Calendar1.SelectedDates(i).Day.ToString()
Next i
Else
Label1.Text = "No dates selected!!"
End If
End Sub
</script>
</head>
<body>
<form id="form1" runat="server">
<asp:Calendar ID="Calendar1" runat="server"
SelectionMode="DayWeekMonth"/>
<hr />
<asp:Button id="Button1"
text="Display Selected Dates"
OnClick="Button_Click"
runat="server" /> <br /><br />
<asp:Label id="Label1" runat="server" />
</form>
</body>
</html>
설명
날짜 수를 확인 하려면이 속성을 사용 하 여 SelectedDatesCollection 컬렉션입니다. Count 속성은 위를 결정 하기 위해 컬렉션을 반복할 때 종종 사용 됩니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET