PostBackOptions.ClientSubmit Property
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.
Gets or sets a value indicating whether the postback event should occur from client-side script.
public:
property bool ClientSubmit { bool get(); void set(bool value); };
public bool ClientSubmit { get; set; }
member this.ClientSubmit : bool with get, set
Public Property ClientSubmit As Boolean
Property Value
true
if the postback event should occur from client-side script; otherwise, false
. The default value is true
.
Remarks
The ClientSubmit property indicates whether the postback event should occur from client-side script. If you set the ClientSubmit property to false
, then no JavaScript is generated. You might assign false
to the ClientSubmit property if you want to call the __doPostBack
method yourself.