HtmlTextWriter.RenderEndTag Method
Definition
Writes the end tag of a markup element to the output stream.
public:
virtual void RenderEndTag();
public virtual void RenderEndTag ();
abstract member RenderEndTag : unit -> unit
override this.RenderEndTag : unit -> unit
Public Overridable Sub 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>
// Create a non-standard tag.
writer->RenderBeginTag( "MyTag" );
writer->Write( "Contents of MyTag" );
writer->RenderEndTag();
writer->WriteLine();
// Create a non-standard tag.
writer.RenderBeginTag("MyTag");
writer.Write("Contents of MyTag");
writer.RenderEndTag();
writer.WriteLine();
' 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.