HtmlTextWriter.WriteEndTag(String) Method

Definition

Writes any tab spacing and the closing tag of the specified markup element.

public virtual void WriteEndTag (string tagName);

Parameters

tagName
String

The element to write the closing tag for.

Examples

The following code example demonstrates rendering an <img> element. The code example uses the following process:

  • Calls the WriteBeginTag method to render the opening characters of the element.

  • Calls the two overloads of the WriteAttribute method to write attributes to the <img> element.

  • Calls the WriteEndTag method to close the <img> element.

// Create a manually rendered tag.
writer.WriteBeginTag("img");
writer.WriteAttribute("alt", "AtlValue");
writer.WriteAttribute("myattribute", "No "encoding " required", false);
writer.Write(HtmlTextWriter.TagRightChar);
writer.WriteEndTag("img");

Remarks

Unlike the RenderEndTag method, the WriteEndTag method has no logic to make the element end tag match the corresponding opening tag.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also