ASP.NET CalendarDay IsSelected 属性

与星星私奔

ASP.NET CalendarDay IsSelected 属性



定义和用法

IsSelected 属性用于获取日期在 Calendar 控件中是否被选定。

如果日期在 Calendar 控件中被选定,则该属性返回 "TRUE",否则返回 "FALSE"。


下面的实例显示了被选定的日期是否在当前的月份中:

<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>

演示实例 »

版权声明:本页面内容旨在传播知识,为用户自行发布,若有侵权等问题请及时与本网联系,我们将第一时间处理。E-mail:284563525@qq.com

目录[+]

取消
微信二维码
微信二维码
支付宝二维码