Assigns any sources of the event and its information to the control's parent.
Assembly: System.Web (in System.Web.dll)
Protected Sub RaiseBubbleEvent ( _
source As Object, _
args As EventArgs _
)protected void RaiseBubbleEvent(
Object source,
EventArgs args
)protected:
void RaiseBubbleEvent(
Object^ source,
EventArgs^ args
)member RaiseBubbleEvent :
source:Object *
args:EventArgs -> unit
Parameters
- source
- Type: System
. . :: . Object
The source of the event.
- args
- Type: System
. . :: . EventArgs
An EventArgs object that contains the event data.
ASP.NET server controls such as the Repeater, DataList and GridView Web controls can contain child controls that raise events. For example, each row in a GridView control can contain one or more buttons created dynamically by templates. Rather than each button raising an event individually, events from the nested controls are "bubbled"—that is, they are sent to the control's parent. The parent in turn raises a generic event called RowCommand with parameter values. These values allow you to determine which individual control that raised the original event. By responding to this single event, you can avoid having to write individual event-handling methods for child controls.
While you cannot override this method, controls you author can handle or raise bubbled events by overriding the OnBubbleEvent method.
The following code example demonstrate how to create a custom class, ChildControl, overriding the Button
Public Class ChildControl
Inherits Button
<System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.Demand, Name:="FullTrust")> _
Protected Overrides Sub OnClick(e As EventArgs)
MyBase.OnClick(e)
Context.Response.Write("<br><br>ChildControl's OnClick called.")
' Bubble this event to parent.
RaiseBubbleEvent(Me, e)
End Sub 'OnClick
End Class 'ChildControl
public class ChildControl : Button
{
[System.Security.Permissions.PermissionSet(System.Security.Permissions.SecurityAction.Demand, Name="FullTrust")]
protected override void OnClick(EventArgs e)
{
base.OnClick(e);
Context.Response.Write("<br><br>ChildControl's OnClick called.");
// Bubble this event to parent.
RaiseBubbleEvent(this, e);
}
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.