XhtmlControlAdapter.RenderOffPageVariables 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.
Renders hidden postback variables for child controls that are not visible due to pagination or secondary UI. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.
protected:
void RenderOffPageVariables(System::Web::UI::MobileControls::Adapters::XhtmlAdapters::XhtmlMobileTextWriter ^ writer, System::Web::UI::Control ^ control, int page);
protected void RenderOffPageVariables (System.Web.UI.MobileControls.Adapters.XhtmlAdapters.XhtmlMobileTextWriter writer, System.Web.UI.Control control, int page);
member this.RenderOffPageVariables : System.Web.UI.MobileControls.Adapters.XhtmlAdapters.XhtmlMobileTextWriter * System.Web.UI.Control * int -> unit
Protected Sub RenderOffPageVariables (writer As XhtmlMobileTextWriter, control As Control, page As Integer)
Parameters
- writer
- XhtmlMobileTextWriter
The XhtmlMobileTextWriter object used to render the server control content on the client's browser.
- control
- Control
The control in which to look for postback variables.
- page
- Int32
The current page number.
Remarks
The RenderOffPageVariables method examines the control and each child control. If the child object implements IPostBackDataHandler, the method uses the child control's adapter's RenderAsHiddenInputField method to render the variables to the current page.
This method is primarily used by the .NET Framework internally.