XhtmlControlAdapter.Render Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Displays the associated control and all of its child controls on the client. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.
Overloads
Render(HtmlTextWriter) |
Displays the associated control and all of its child controls on the client. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET. |
Render(XhtmlMobileTextWriter) |
Displays the associated control and all of its child controls on the client. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET. |
Render(HtmlTextWriter)
Displays the associated control and all of its child controls on the client. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.
public:
override void Render(System::Web::UI::HtmlTextWriter ^ writer);
public override void Render (System.Web.UI.HtmlTextWriter writer);
override this.Render : System.Web.UI.HtmlTextWriter -> unit
Public Overrides Sub Render (writer As HtmlTextWriter)
Parameters
- writer
- HtmlTextWriter
An HtmlTextWriter object.
Remarks
The HtmlTextWriter serves as the base for an XhtmlMobileTextWriter object that ultimately renders the control and all of its child controls to the client.
This method is primarily used by developers of custom adapters.
Notes to Inheritors
This method is typically overridden in custom adapters, and is called by the .NET Framework.
See also
- HtmlTextWriter
- XhtmlMobileTextWriter
- Architectural Overview of Adaptive Control Behavior
- Adapter Sets Functionality
- Control and Adapter Interaction
Applies to
Render(XhtmlMobileTextWriter)
Displays the associated control and all of its child controls on the client. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.
public:
virtual void Render(System::Web::UI::MobileControls::Adapters::XhtmlAdapters::XhtmlMobileTextWriter ^ writer);
public virtual void Render (System.Web.UI.MobileControls.Adapters.XhtmlAdapters.XhtmlMobileTextWriter writer);
override this.Render : System.Web.UI.MobileControls.Adapters.XhtmlAdapters.XhtmlMobileTextWriter -> unit
Public Overridable Sub Render (writer As XhtmlMobileTextWriter)
Parameters
- writer
- XhtmlMobileTextWriter
The XhtmlMobileTextWriter object used to render the server control content on the client's browser.
Remarks
This method is primarily used by developers of custom adapters.
Notes to Inheritors
This method is typically overridden in custom adapters, and is called by the .NET Framework.
See also
- XhtmlMobileTextWriter
- Architectural Overview of Adaptive Control Behavior
- Adapter Sets Functionality
- Control and Adapter Interaction