SelectedDatesCollection.Item Property (Int32)
.NET Framework (current version)
Gets a System.DateTime object at the specified index in the SelectedDatesCollection collection.
Assembly: System.Web (in System.Web.dll)
Parameters
- index
-
Type:
System.Int32
An ordinal index value that specifies which System.DateTime to return.
Property Value
Type: System.DateTimeA System.DateTime that represents an element in the SelectedDatesCollection.
Use this indexer to get an individual System.DateTime object in the SelectedDatesCollection collection at the specified index using simple array notation.
The following code example demonstrates how to use the indexer to get a System.DateTime object from a SelectedDatesCollection collection. Note that the SelectedDates property of the Calendar control is an instance of the SelectedDatesCollection class.
<%@ 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 Selection_Change(sender As Object, e As EventArgs) Dim current_month As Integer = Calendar1.VisibleDate.Month Dim current_year As Integer = Calendar1.VisibleDate.Year Dim i As Integer For i = 0 To Calendar1.SelectedDates.Count - 1 If Calendar1.SelectedDates(i).DayOfWeek = DayOfWeek.Wednesday Then Label1.Text = "Wednesday falls on " & _ Calendar1.SelectedDates(i).Month & "/" & _ Calendar1.SelectedDates(i).Day & "/" & _ Calendar1.SelectedDates(i).Year End If Next i If Calendar1.SelectedDates.Count <> 7 Then Label1.Text = "" End If End Sub </script> </head> <body> <form id="form1" runat="server"> <asp:Calendar ID="Calendar1" runat="server" SelectionMode="DayWeekMonth" OnSelectionChanged="Selection_Change" /> <hr /> Select an entire week <br /><br /> <asp:Label id="Label1" runat="server" /> </form> </body> </html>
.NET Framework
Available since 1.1
Available since 1.1
Show: