HtmlTextWriter.SlashChar Campo

Definizione

Rappresenta la barra (/).

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

Valore del campo

Esempio

Nell'esempio di codice seguente viene illustrato come eseguire manualmente il rendering dell'attributo src di un <img> elemento. Nell'esempio di codice viene utilizzato il Write metodo con il SlashChar campo come parametro per eseguire il rendering delle barre nel percorso applicato all'attributo src .

In questo esempio di codice viene eseguito il rendering del markup seguente:

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)

Commenti

Usare il campo per eseguire il SlashChar rendering delle barre quando si scrive un URL. Il WriteEndTag metodo usa il campo quando si scrive il SlashChar tag di chiusura di un elemento di markup.

Si applica a

Vedi anche