SelectedDatesCollection.CopyTo Method (Array, Int32)

 

Copies the items from the SelectedDatesCollection collection to the specified System.Array, starting with the specified index.

Namespace:   System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)

public void CopyTo(
	Array array,
	int index
)

Parameters

array
Type: System.Array

A zero-based System.Array that receives the copied items from the SelectedDatesCollection.

index
Type: System.Int32

The first index in the specified System.Array to receive the items.

Use this method to copy the contents of the SelectedDatesCollection collection into the specified System.Array, starting at the specified index.

System_CAPS_noteNote

The array parameter must be a zero-based System.Array.

The following code example demonstrates how to use the CopyTo method to copy items from the SelectedDatesCollection into the specified array.

<%@ 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 runat="server">

       void Select_Change(Object sender, EventArgs e) 
       {

          DateTime[] myDateArray = new DateTime[Calendar1.SelectedDates.Count];

          // Copy the collection to an array.
          Calendar1.SelectedDates.CopyTo(myDateArray, 0);      

          Label1.Text = "The dates selected are: ";

          // Loop through the IEnumerator and display the contents.
          foreach (DateTime date in myDateArray) 
          {

             Label1.Text += " " + date.Day.ToString();

          }
       }

    </script>

 </head>     
 <body>

    <form id="form1" runat="server">

       <asp:Calendar ID="Calendar1" runat="server"  
            SelectionMode="DayWeekMonth" 
            OnSelectionChanged="Select_Change"/>

       <hr />

       Select dates from the Calendar.<br /><br />

       <asp:Label id="Label1" runat="server" />

    </form>
 </body>
 </html>

.NET Framework
Available since 1.1
Return to top
Show: