HtmlTextWriter.SlashChar Champ
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Représente la barre oblique (/).
public: char SlashChar;
public const char SlashChar;
val mutable SlashChar : char
Public Const SlashChar As Char
Valeur de champ
Exemples
L’exemple de code suivant montre comment restituer manuellement l’attribut src
d’un <img>
élément. L’exemple de code utilise la Write méthode avec le SlashChar champ comme paramètre pour afficher les barres obliques dans le chemin appliqué à l’attribut src
.
Cet exemple de code affiche le balisage suivant :
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)
Remarques
Utilisez le SlashChar champ pour afficher les barres obliques lorsque vous écrivez une URL. La WriteEndTag méthode utilise le champ lors de l’écriture SlashChar de la balise de fermeture d’un élément de balisage.