HtmlTextWriter.SlashChar 字段

定义

表示斜杠 (/)。

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

字段值

示例

下面的代码示例演示如何手动呈现 src 元素的 <img> 属性。 该代码示例使用 Write 方法以及 SlashChar 字段作为其参数,以在应用于 src 属性的路径中呈现斜杠标记。

此代码示例呈现以下标记:

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)

注解

编写 URL 时, SlashChar 使用 字段呈现斜杠标记。 方法 WriteEndTagSlashChar 编写标记元素的结束标记时使用 字段。

适用于

另请参阅