WmlMobileTextWriter.RenderGoAction Method

Definition

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

public:
 virtual void RenderGoAction(System::String ^ target, System::String ^ argument, System::Web::UI::MobileControls::Adapters::WmlPostFieldType postBackType, bool includeVariables);
public virtual void RenderGoAction (string target, string argument, System.Web.UI.MobileControls.Adapters.WmlPostFieldType postBackType, bool includeVariables);
abstract member RenderGoAction : string * string * System.Web.UI.MobileControls.Adapters.WmlPostFieldType * bool -> unit
override this.RenderGoAction : string * string * System.Web.UI.MobileControls.Adapters.WmlPostFieldType * bool -> unit
Public Overridable Sub RenderGoAction (target As String, argument As String, postBackType As WmlPostFieldType, includeVariables As Boolean)

Parameters

target
String

The ID of the control targeted by the action. When the user selects the action, a postback is generated, targeting the control specified by this ID.

argument
String

The argument for the action. The argument is included in the postback generated when the user selects the action.

postBackType
WmlPostFieldType

The WmlPostFieldType type used for arg.

includeVariables
Boolean

Whether to include all variables on the form when posting back to the server.

Remarks

Called internally by the writer or inherited classes.

Applies to

See also