ChangePassword.OnBubbleEvent(Object, EventArgs) Method

Definition

Determines whether the event for the ChangePassword control is passed up the Web server control hierarchy for the page.

C#
protected override bool OnBubbleEvent(object source, EventArgs e);

Parameters

source
Object

The source of the event.

e
EventArgs

An EventArgs object that contains the event data.

Returns

true if the event has been canceled; otherwise, false. The default is false.

Remarks

The ChangePassword control contains child controls for the Change Password and Success views. Rather than each button raising an event individually, events from the nested controls are bubbled (that is, they are sent to the naming container). The naming container in turn raises a generic event called ItemCommand with parameter values that allow you to determine which individual control raised the original event. By responding to this single event, you can avoid writing event-handling methods for individual child controls.

Applies to

Produkt Verzie
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also