HtmlTextWriter.SlashChar Field

Definition

Represents the slash mark (/).

public: char SlashChar;
public const char SlashChar;
val mutable SlashChar : char
Public Const SlashChar As Char 

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/

// 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);
' 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

See also