HtmlFormAdapter.RenderBodyTag(HtmlMobileTextWriter, IDictionary) Method

Definition

Renders the <body> tag. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

protected:
 virtual void RenderBodyTag(System::Web::UI::MobileControls::Adapters::HtmlMobileTextWriter ^ writer, System::Collections::IDictionary ^ attributes);
protected virtual void RenderBodyTag (System.Web.UI.MobileControls.Adapters.HtmlMobileTextWriter writer, System.Collections.IDictionary attributes);
abstract member RenderBodyTag : System.Web.UI.MobileControls.Adapters.HtmlMobileTextWriter * System.Collections.IDictionary -> unit
override this.RenderBodyTag : System.Web.UI.MobileControls.Adapters.HtmlMobileTextWriter * System.Collections.IDictionary -> unit
Protected Overridable Sub RenderBodyTag (writer As HtmlMobileTextWriter, attributes As IDictionary)

Parameters

writer
HtmlMobileTextWriter

The text writer.

attributes
IDictionary

The specified <body> attributes.

Remarks

The base implementation renders a <body> tag with the given attributes. Inheriting adapters can override this method and modify the dictionary of attributes before calling the base implementation. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile apps and sites with ASP.NET.

Applies to

See also