Control.Render Method (HtmlTextWriter)
.NET Framework (current version)
Sends server control content to a provided HtmlTextWriter object, which writes the content to be rendered on the client.
Assembly: System.Web (in System.Web.dll)
abstract Render : writer:HtmlTextWriter -> unit override Render : writer:HtmlTextWriter -> unit
Parameters
- writer
-
Type:
System.Web.UI.HtmlTextWriter
The HtmlTextWriter object that receives the server control content.
When developing custom server controls, you can override this method to generate content for an ASP.NET page.
The following code example demonstrates overriding the Render method. The HasControls method is used to determine whether the server control has any child controls stored in its ControlCollection object, which is accessible through the Control.Controls property. If HasControls returns true and the first server control in the collection is literal text, then the literal text is appended to an HTML string.
.NET Framework
Available since 1.1
Available since 1.1
Show: