HtmlTextWriter.RenderEndTag Method
.NET Framework 3.0
Writes the end tag of a markup element to the output stream.
Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
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();
// Create a non-standard tag.
writer.RenderBeginTag("Mytag");
writer.Write("Contents of MyTag");
writer.RenderEndTag();
writer.WriteLine();
Community Additions
ADD
Show: