DayRenderEventArgs.Day Property
.NET Framework (current version)
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>
.NET Framework
Available since 1.1
Available since 1.1
Show: