SelectedDatesCollection.Remove Method (DateTime)

 

Removes the specified System.DateTime object from the SelectedDatesCollection collection.

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

Public Sub Remove (
	date As Date
)

Parameters

date
Type: System.DateTime

The System.DateTime to remove from the SelectedDatesCollection.

Use this method to remove the specified System.DateTime object from the SelectedDatesCollection collection.

The following code example demonstrates how to use the Remove method to remove an item from the SelectedDatesCollection collection.

<%@ 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
                Calendar1.SelectedDates.Remove(Calendar1.SelectedDates(0))
            End If

        End Sub

    </script>

 </head>     
 <body>

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

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

       <hr />

       Select some dates then click the button below <br /><br />

       <asp:Button id="Button1"
            text="Remove First Date" 
            OnClick="Button_Click"  
            runat="server"  /> <br />

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

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

.NET Framework
Available since 1.1
Return to top
Show: