MobilePage.EnableEventValidation Property

Definition

Gets or sets a value indicating whether postback event data should be validated. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

public:
 virtual property bool EnableEventValidation { bool get(); void set(bool value); };
public override bool EnableEventValidation { get; set; }
member this.EnableEventValidation : bool with get, set
Public Overrides Property EnableEventValidation As Boolean

Property Value

false.

Exceptions

An attempt was made to set this property.

Remarks

ASP.NET controls create client-side scripts to raise postback events on the server. It is possible for a malicious user to use the postback script to send arbitrary post events to server controls. For this reason, ASP.NET version 2.0 controls validate the event data to ensure that the event was raised by client-side code rendered by the control.

Event validation is not supported in mobile pages.

Applies to

See also