HtmlTextWriter.SlashChar Campo
Definição
Representa a marca de barra (/).Represents the slash mark (/).
public: char SlashChar;
public const char SlashChar;
val mutable SlashChar : char
Public Const SlashChar As Char
Valor do campo
Exemplos
O exemplo de código a seguir demonstra como renderizar manualmente o src atributo de um <img> elemento.The following code example demonstrates how to manually render the src attribute of an <img> element. O exemplo de código usa o Write método com o SlashChar campo como seu parâmetro para renderizar as barras no caminho que é aplicado ao src atributo.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.
Este exemplo de código renderiza a seguinte marcação: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)
Comentários
Use o SlashChar campo para renderizar as barras quando você escrever uma URL.Use the SlashChar field to render the slash marks when you write a URL. O WriteEndTag método usa o SlashChar campo ao escrever a marca de fechamento de um elemento de marcação.The WriteEndTag method uses the SlashChar field when writing the closing tag of a markup element.