SiteMapPath.RootNodeStyle Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the style for the root node display text.
public:
property System::Web::UI::WebControls::Style ^ RootNodeStyle { System::Web::UI::WebControls::Style ^ get(); };
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)]
public System.Web.UI.WebControls.Style RootNodeStyle { get; }
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)>]
member this.RootNodeStyle : System.Web.UI.WebControls.Style
Public ReadOnly Property RootNodeStyle As Style
Property Value
The Style that contains the style settings for the SiteMapPath control root node display text.
- Attributes
Examples
The following code example demonstrates how to declaratively set the RootNodeStyle attributes on a SiteMapPath control.
Important
This example has a text box that accepts user input, which is a potential security threat. By default, ASP.NET Web pages validate that user input does not include script or HTML elements. For more information, see Script Exploits Overview.
<%@ Page language="c#"%>
<!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 runat="server">
<title>ASP.NET Example</title>
</head>
<body>
<form id="Form1" method="post" runat="server">
<p><asp:SiteMapPath runat="server" ID="SiteMapPath1"
RootNodeStyle-Font-Bold="true"
RootNodeStyle-Font-Names="Arial Black"
RootNodeStyle-Font-Italic="True"
RootNodeStyle-ForeColor="Green"
CurrentNodeStyle-ForeColor="Orange"/></p>
<p><asp:Label
id="Label1"
runat="server"
Width="441px"
Height="64px"
AssociatedControlID="TextBox1">
Enter your customer service issue in the space
provided below, and we will get back to you as
soon as possible.</asp:Label></p>
<p><asp:TextBox id="TextBox1" runat="server"
Width="448px" Height="96px"></asp:TextBox></p>
<p><asp:Button id="Button1" runat="server"
Width="112px" Text="Submit"></asp:Button></p>
</form>
</body>
</html>
<%@ Page language="VB"%>
<!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 runat="server">
<title>ASP.NET Example</title>
</head>
<body>
<form id="Form1" method="post" runat="server">
<p><asp:SiteMapPath runat="server" ID="SiteMapPath1"
RootNodeStyle-Font-Bold="true"
RootNodeStyle-Font-Names="Arial Black"
RootNodeStyle-Font-Italic="True"
RootNodeStyle-ForeColor="Green"
CurrentNodeStyle-ForeColor="Orange"/></p>
<p><asp:Label
id="Label1"
runat="server"
Width="441px"
AssociatedControlID="TextBox1"
Height="64px">Enter your customer service issue in the space
provided below, and we will get back to you as
soon as possible.</asp:Label></p>
<p><asp:TextBox id="TextBox1" runat="server"
Width="448px" Height="96px"></asp:TextBox></p>
<p><asp:Button id="Button1" runat="server"
Width="112px" Text="Submit"></asp:Button></p>
</form>
</body>
</html>
Remarks
Use the RootNodeStyle property to control the appearance of the display text for the root node of the navigation path. By default, the display text is that specified in the Title property of the SiteMapNode that represents the page. Common style settings include custom background color, foreground color, font properties, and node spacing.
For SiteMapPath nodes, style properties are merged into a single style, in the following order:
CurrentNodeStyle or RootNodeStyle, depending on the node type.
Note
If you set the node font style to a strikeout or overline style, the default underline style of the node is not displayed unless it is explicitly set to true
.
If a RootNodeTemplate property is defined, the RootNodeStyle property is ignored.