HtmlTextWriter.WriteEndTag(String) Method

Definition

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

public:
 virtual void WriteEndTag(System::String ^ tagName);
public virtual void WriteEndTag (string tagName);
abstract member WriteEndTag : string -> unit
override this.WriteEndTag : string -> unit
Public Overridable Sub WriteEndTag (tagName As String)

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" );
// 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");
' Create a manually rendered tag.
writer.WriteBeginTag("img")
writer.WriteAttribute("alt", "AtlValue")
writer.WriteAttribute("myattribute", "No "encoding " required", False)
writer.Write(HtmlTextWriter.TagRightChar)

Remarks

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

Applies to

See also