System.Web.UI Namespace Control Class
Outputs control content to a provided HtmlTextWriter output stream.
[ VB ]
Public Sub RenderControl ( _
ByVal writer As HtmlTextWriter _
)
[ C# ]
Public void RenderControl (
HtmlTextWriter writer
);
[ C++ ]
public: void RenderControl (
HtmlTextWriter* writer
);
[ JScript ]
Public function RenderControl (
writer : HtmlTextWriter
);
- writer
- The HtmlTextWriter object that receives the control content.
If a server control's Visible property is set to true, this method determines whether tracing is enabled for the page. If so, it stores trace information associated with the control, and renders the server control content to the page.
Control Members