HtmlTextWriter.SlashChar Field

Definition

Represents the slash mark (/).

C#
public const char SlashChar;

Field Value

Examples

The following code example demonstrates how to manually render the src attribute of an <img> element. The code example uses the Write method with the SlashChar field as its parameter to render slash marks in the path that is applied to the src attribute.

This code example renders the following markup:

src="/images/

C#
// Write the src attribute and the path
// for the image file.
writer.Write("src");
writer.Write(HtmlTextWriter.EqualsChar);
writer.Write(HtmlTextWriter.DoubleQuoteChar);
writer.Write(HtmlTextWriter.SlashChar);
writer.Write("images");
writer.Write(HtmlTextWriter.SlashChar);

Remarks

Use the SlashChar field to render the slash marks when you write a URL. The WriteEndTag method uses the SlashChar field when writing the closing tag of a markup element.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also