SelectedDatesCollection.Remove(DateTime) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Removes the specified DateTime object from the SelectedDatesCollection collection.
public:
void Remove(DateTime date);
public void Remove (DateTime date);
member this.Remove : DateTime -> unit
Public Sub Remove (date As DateTime)
Parameters
- date
- DateTime
The DateTime to remove from the SelectedDatesCollection.
Examples
The following code example demonstrates how to use the Remove method to remove an item from the SelectedDatesCollection collection.
<%@ 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)
Calendar1.SelectedDates.Remove(Calendar1.SelectedDates[0]);
}
</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>
<%@ 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>
Remarks
Use this method to remove the specified System.DateTime object from the SelectedDatesCollection collection.
Applies to
See also
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET