HtmlTextWriter.RenderEndTag Method

Definition

Writes the end tag of a markup element to the output stream.

C#
public virtual void RenderEndTag();

Examples

The following code example demonstrates how to call the RenderEndTag method after both the RenderBeginTag method that generates the opening tag and the Write method that renders the inner markup between the opening and closing tags of the custom MyTag element have been called.

This code example generates the following markup:

<MyTag>

Contents of MyTag

</MyTag>

C#
// Create a non-standard tag.
writer.RenderBeginTag("MyTag");
writer.Write("Contents of MyTag");
writer.RenderEndTag();
writer.WriteLine();

Remarks

Call the RenderEndTag method after the RenderBeginTag overload is called and after all content between the opening and closing tags (inner markup) of the element has been rendered.

Applies to

Proizvod Verzije
.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