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::RenderAfterContent Method ()

 

Writes any text or spacing that occurs after the content and before the closing tag of the markup element to the markup output stream.

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

protected:
virtual String^ RenderAfterContent()

Return Value

Type: System::String^

A string that contains the spacing or text to write after the content of the element.

The RenderAfterContent method can be useful if you want to insert child elements into the current markup element.

Notes to Inheritors:

The HtmlTextWriter class implementation of the RenderAfterContent method returns null. Override RenderAfterContent if you want to write text or spacing after the element content but before the closing tag.

The following code example shows how to override the RenderAfterContent method in a class derived from the HtmlTextWriter class to determine whether a <label> element is being rendered. If so, the RenderAfterContent override inserts the closing tag of a <font> element immediately before the closing tag of the <label> element. If an element other than <label> is being rendered, the RenderAfterContent base method is used.

// Override the RenderAfterContent method to render
// the closing tag of a font element if the
// rendered tag is a label element.

virtual String^ RenderAfterContent() override
{

   // Check to determine whether the element being rendered
   // is a label element. If so, render the closing tag
   // of the font element; otherwise, call the base method.
   if ( TagKey == HtmlTextWriterTag::Label )
   {
      return "</font>";
   }
   else
   {
      return __super::RenderAfterContent();
   }
}

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