DayRenderEventArgs.Day Property
Gets the CalendarDay object that represents the day being rendered in the Calendar control.
Assembly: System.Web (in System.Web.dll)
Property Value
Type: System.Web.UI.WebControls.CalendarDayThe CalendarDay that represents the day being rendered in the Calendar.
Use the Day property to get information about the day being rendered in the Calendar control.
The following code example demonstrates how to use the Day property to determine whether the day being rendered in the Calendar control is in the current month and also a weekday.
<%@ 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>DayRenderEventArgs Example</title> <script language="C#" runat="server"> void DayRender(Object source, DayRenderEventArgs e) { if (!e.Day.IsOtherMonth && !e.Day.IsWeekend) e.Cell.BackColor=System.Drawing.Color.Yellow; } </script> </head> <body> <form id="form1" runat="server"> <h3>DayRenderEventArgs Example</h3> <asp:Calendar id="calendar1" OnDayRender="DayRender" runat="server"> <WeekendDayStyle BackColor="gray"> </WeekendDayStyle> </asp:Calendar> </form> </body> </html>
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.