C# Corner
Tech
News
Videos
Forums
Trainings
Books
Events
More
Interviews
Jobs
Live
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
.NET
ADO.NET
Android
ASP.NET
C#
Databases & DBA
Design Patterns & Practices
Java
Learn iOS Programming
OOP/OOD
SharePoint
Software Testing
Web Development
WPF
View All
6
Reply
What is event bubbling in .NET?
Rakesh Singh
11y
3.4k
1
Reply
Delete Row
Delete Column
Insert Link
×
Insert
Cancel
Embed YouTube Video
×
Width (%)
Height (%)
Insert
Cancel
Table Options
×
Rows
Columns
First row as header
Create Table
Insert Image
×
Selected file:
Alignment
Left
Center
Right
Select an image from your device to upload
Upload to Server
Cancel
Submit
The passing of the control from the child to the parent is called as bubbling. Controls like Data Grid, Datalist, Repeater, etc can have child controls like List box, etc inside them. An event generated is passed on to the parent as an Item Command.
Rakesh Singh
11y
2
Handling(tracking) child controls events (only button type child controls) through parent control in data bind controls known as event bubbling.Server controls like Datagrid, DataList, and Repeater can have other child controls inside them.Example DataGrid can have combo box inside datagrid. These child control do not raise there events by themselves, rather they pass the event to the container parent (which can be a datagrid, datalist, repeater), which passed to the page as "ItemCommand" event. As the child control send events to parent it is termed as event bubbling.
Munesh Sharma
11y
1
Simply calling a parent control's event from a child control is called Event bubbling. Handling child controls events through parent control in data bind controls known as event bubbling. Server controls like Datagrid, DataList, and Repeater can have other child controls inside them.Example DataGrid can have combo box inside datagrid. These child control do not raise there events by themselves, rather they pass the event to the container parent (which can be a datagrid, datalist, repeater), which passed to the page as "ItemCommand" event. As the child control send events to parent it is termed as event bubbling.
Shraban
9y
0
Handling(tracking) child controls events (only button type child controls) through parent control in data bind controls known as event bubbling.Server controls like Datagrid, DataList, and Repeater can have other child controls inside them.Example DataGrid can have combo box inside datagrid. These child control do not raise there events by themselves, rather they pass the event to the container parent (which can be a datagrid, datalist, repeater), which passed to the page as "ItemCommand" event. As the child control send events to parent it is termed as event bubbling.
Kml Surani
10y
0
calling parent class events from chaild class event
Sri Kanth
11y
0
The ASP.NET page framework provides a technique called event bubbling that allows a child control to propagate events up its containment hierarchy. It is attached to the original control as well as to the control that exposes the bubbled event. Event bubbling is basically used with Data-bound controls like: Repeater, DataList, DataGrid, GridView etc.
Shiv kumar
11y
0
Message