RadCalendar for ASP.NET

RadCalendar Send comments on this topic.
HeaderTemplate Property
See Also 
Telerik.WebControls Namespace > RadCalendar Class : HeaderTemplate Property


Gets or sets the System.Web.UI.ITemplate that defines how the header section of the RadCalendar control is displayed.   

 

Namespace: Telerik.WebControls
Assembly: RadCalendar (in RadCalendar.dll)

Syntax

Visual Basic (Declaration) 
Public Property HeaderTemplate As ITemplate
Visual Basic (Usage)Copy Code
Dim instance As RadCalendar
Dim value As ITemplate
 
instance.HeaderTemplate = value
 
value = instance.HeaderTemplate
C# 
public ITemplate HeaderTemplate {get; set;}

Return Value

The default value is a null reference (Nothing in Visual Basic).

Remarks

Header section of the RadCalendar control is displayed under the title section and above the main calendar area (the section that displays the dates information).

Use this property to create a template that controls how the header section of a RadCalendar control is displayed.

CAUTION This control can be used to display user input, which might include malicious client script. Check any information that is sent from a client for executable script, SQL statements, or other code before displaying it in your application. ASP.NET provides an input request validation feature to block script and HTML in user input. Validation server controls are also provided to assess user input. For more information, see Validation Server Controls in MSDN.

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

See Also