ASP.NET CalendarDay IsSelected 屬性
ASP.NET CalendarDay IsSelected 屬性

定義和用法
IsSelected 屬性用于獲取日期在 Calendar 控件中是否被選定。
如果日期在 Calendar 控件中被選定,則該屬性返回 "TRUE",否則返回 "FALSE"。
實例
下面的實例顯示了被選定的日期是否在當(dāng)前的月份中:
<script runat="server">
Sub DaySelect(obj As Object, e As DayRenderEventArgs)
??If e.Day.IsSelected Then
????If e.Day.IsOtherMonth = "TRUE" Then
??????Label1.Text = "NO"
????Else
??????Label1.Text = "YES"
????End If
??End If
End Sub
</script>
<form runat="server">
??<asp:Calendar id="cal1" runat="server"
??OnDayRender="DaySelect"/>
??The selected date is in the current month:
??<asp:Label id="Label1" runat="server"/>
</form>
Sub DaySelect(obj As Object, e As DayRenderEventArgs)
??If e.Day.IsSelected Then
????If e.Day.IsOtherMonth = "TRUE" Then
??????Label1.Text = "NO"
????Else
??????Label1.Text = "YES"
????End If
??End If
End Sub
</script>
<form runat="server">
??<asp:Calendar id="cal1" runat="server"
??OnDayRender="DaySelect"/>
??The selected date is in the current month:
??<asp:Label id="Label1" runat="server"/>
</form>
演示實例 ?

相關(guān)文章
- ASP.NET Web Pages HTML 表單
- ASP.NET Web Pages 幫助器
- ASP.NET Razor C# 變量
- ASP.NET MVC 安全
- ASP.NET 事件句柄
- ASP.NET Hashtable
- ASP.NET SortedList
- ASP.NET LinkButton 控件
- ASP.NET RadioButtonList 控件
- ASP.NET TableRow 控件
- WebSecurity ChangePassword 方法
- WebSecurity Login 方法
- WebSecurity RequireRoles 方法
- ASP.NET HTML 控件 DropdownList
- ASP.NET HTML 控件 Radiobutton
- ASP.NET HTML 控件 Table
- ASP.NET HTML 控件 xml
- ASP.NET HTML 控件 CustomValidator
- C# 實例 If Else 條件
- ASP.NET Calendar SelectedDate 屬性