SiteMapPath.PathSeparatorTemplate Property
Assembly: System.Web (in system.web.dll)
[TemplateContainerAttribute(typeof(SiteMapNodeItem))] public: virtual property ITemplate^ PathSeparatorTemplate { ITemplate^ get (); void set (ITemplate^ value); }
/** @property */ public ITemplate get_PathSeparatorTemplate () /** @property */ public void set_PathSeparatorTemplate (ITemplate value)
public function get PathSeparatorTemplate () : ITemplate public function set PathSeparatorTemplate (value : ITemplate)
Property Value
An ITemplate object that implements the InstantiateIn method, to render custom content for the path delimiter of a navigation path.Set the PathSeparatorTemplate to an ITemplate object to use an Image or some other control, such as a Label, as the path delimiter between navigation nodes instead of the PathSeparator string.
If the PathSeparatorTemplate property is set, the template overrides both the PathSeparator text displayed and any PathSeparatorStyle applied to it.
You can declaratively set the PathSeparatorTemplate property to any Web server control, and the ASP.NET infrastructure performs the necessary steps to wrap the Web server control as an ITemplate. However, Web server controls do not implement the ITemplate interface; therefore, when you work with the ITemplate properties programmatically, you must write an ITemplate wrapper for any template code. Then, the PathSeparatorTemplate property is set to an instance of the ITemplate wrapper.
The following code example demonstrates how to define an Image as a PathSeparatorTemplate declaratively in a Web Form.
<%@ Page Language="VJ#"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<HTML>
<body MS_POSITIONING="FlowLayout">
<form id="Form1" method="post" runat="server">
<p><asp:SiteMapPath
runat="server"
ID="SiteMapPath1"
RootNodeStyle-Font-Names="Verdana"
RootNodeStyle-Font-Italic="True"
RootNodeStyle-ForeColor="Blue"
CurrentNodeStyle-ForeColor="Red">
<PATHSEPARATORTEMPLATE>
<asp:Image id="Image1" runat="server" ImageUrl="6.jpg"></asp:Image>
</PATHSEPARATORTEMPLATE>
</asp:SiteMapPath>
<h1>About Us</h1>
<p>This company was founded in 1899, as the demand for widgets grew.</p>
</form>
</body>
</HTML>
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.