Calendar.DayRender Event
Assembly: System.Web (in system.web.dll)
public: event DayRenderEventHandler^ DayRender { void add (DayRenderEventHandler^ value); void remove (DayRenderEventHandler^ value); }
/** @event */ public void add_DayRender (DayRenderEventHandler value) /** @event */ public void remove_DayRender (DayRenderEventHandler value)
In JScript, you can handle the events defined by a class, but you cannot define your own.
Not applicable.
This event is raised when each day is created in the control hierarchy for the Calendar control.
Although data binding is not supported for the Calendar control, it is possible to modify the content and formatting of the individual date cells. Before the Calendar control is displayed on the Web page, it creates and assembles the components that make up the control. The DayRender event is raised when each date cell in the Calendar control is created. You can control the contents and formatting of a date cell when it is created by providing code in the event handler for the DayRender event. For more information on customizing the contents of a date cell, see OnDayRender.
Note: |
|---|
| Because the DayRender event is raised while the Calendar control is being rendered, you cannot add a control that can also raise an event, such as LinkButton. You can only add static controls, such as System.Web.UI.LiteralControl, Label, Image, and HyperLink. |
For more information about handling events, see Events and Delegates.
| Topic | Location |
|---|---|
| How to: Customize Individual Days in a Calendar Web Server Control | Building ASP .NET Web Applications |
| How to: Display Selected Dates from a Database in the Calendar Control | Building ASP .NET Web Applications |
| How to: Customize Individual Days in a Calendar Web Server Control | Building ASP .NET Web Applications |
| How to: Display Selected Dates from a Database in the Calendar Control | Building ASP .NET Web Applications |
Note: