TemplateBasedControl.CustomAlternateTemplate Property
Gets or sets a custom alternate template.
Namespace: Microsoft.SharePoint.WebControls
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
<TemplateContainerAttribute(GetType(TemplateContainer))> _
<PersistenceModeAttribute(PersistenceMode.InnerProperty)> _
Public Property CustomAlternateTemplate As ITemplate
Get
Set
Dim instance As TemplateBasedControl
Dim value As ITemplate
value = instance.CustomAlternateTemplate
instance.CustomAlternateTemplate = value
[TemplateContainerAttribute(typeof(TemplateContainer))]
[PersistenceModeAttribute(PersistenceMode.InnerProperty)]
public ITemplate CustomAlternateTemplate { get; set; }
Property Value
Type: System.Web.UI.ITemplate
A ITemplate object that renders the control.
Remarks
The CustomTemplate and CustomAlternateTemplate properties are marked with the [PersistenceMode(PersistenceMode.InnerProperty)] attribute. This means that the ITemplate objects that they return are compiled and persist in the TemplateBasedControl object as a nested tag. There are several advantages to using precompiled templates; for example, they can be added to a page in a visual designer such as Microsoft Office SharePoint Designer 2007 or Microsoft Visual Studio 2005 by dragging and dropping them from the designer toolbox. But there are disadvantages also. For more information, see Patterns of Custom Field Rendering, Web User Controls and Web Custom Controls, and PersistenceModeAttribute.
See Also
Reference
Microsoft.SharePoint.WebControls Namespace
Web User Controls and Web Custom Controls