SelectedDatesCollection.Remove(DateTime) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从 DateTime 集合中移除指定的 SelectedDatesCollection 对象。
public:
void Remove(DateTime date);
public void Remove (DateTime date);
member this.Remove : DateTime -> unit
Public Sub Remove (date As DateTime)
参数
- date
- DateTime
要从 DateTime 移除的 SelectedDatesCollection。
示例
下面的代码示例演示如何使用 Remove 该方法从 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)
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>
注解
使用此方法从集合中删除指定的 System.DateTime 对象 SelectedDatesCollection 。