©
Dieses Dokument verwendet PHP-Handbuch für chinesische Websites Freigeben
IsToday 属性用于获取日期是否是当前日期。
如果日期是当前日期,则该属性返回 "TRUE",否则返回 "FALSE"。
下面的实例显示了被选日期是否是当前日期:
<script runat="server">
Sub DaySelect(obj As Object, e As DayRenderEventArgs)
If e.Day.IsSelected Then
If e.Day.IsToday = "TRUE" Then
Label1.Text = "YES"
Else
Label1.Text = "NO"
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>