Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

HtmlTextWriter::RenderEndTag Method ()

 

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

Namespace:   System.Web.UI
Assembly:  System.Web (in System.Web.dll)

public:
virtual void RenderEndTag()

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.

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>

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

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft