WmlMobileTextWriter.CalculateFormPostBackUrl(Boolean, Boolean) Method

Definition

Returns the calculated URL required to post the form to the server. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

protected:
 virtual System::String ^ CalculateFormPostBackUrl(bool externalSubmit, bool % encode);
protected virtual string CalculateFormPostBackUrl (bool externalSubmit, ref bool encode);
abstract member CalculateFormPostBackUrl : bool * bool -> string
override this.CalculateFormPostBackUrl : bool * bool -> string
Protected Overridable Function CalculateFormPostBackUrl (externalSubmit As Boolean, ByRef encode As Boolean) As String

Parameters

externalSubmit
Boolean

true to indicate that the current form submits to an external URL; otherwise, false.

encode
Boolean

true to encode the URL string; otherwise, false.

Returns

The calculated URL required to post the form to the server.

Remarks

Called internally by the writer, and can be overridden by an inheriting class (writer).

Applies to

See also