what is bubbled event ? give suitable example in code vice
with demo
Answers were Sorted based on User's Feedback
Bubbled events are the events made by child controls inside
a major control.
example . checkbox in a datagrid
the child controls do not raise their events by themselves
,rather they passthe event to container parent(which can be
datagrid,datalist,repeater),which passed to the page as
"ItemCommand"event..As the child control send there events
to parent .this is termed as event bubbling
Is This Answer Correct ? | 15 Yes | 1 No |
Answer / subhas
Whene a container control like DataList/GridView etc...raise
events in response to postback caused by their child
controls we call those events as bubbled events
DataList/Repeater ---->ItemCommand
GridView ----->RowCommand
Is This Answer Correct ? | 4 Yes | 0 No |
What is data reader in c#?
How to properly clean up excel interop objects?
What is Implementation inheritance and interface inheritance?
What are virtual destructors?
0 Answers InfoAxon Technologies,
What is parseexact c#?
What is an ienumerable in c#?
What is the difference between package and interface?
What is the purpose of constructor in c#?
Why should I use interface in c#?
How can you overload a method?
How did you implemented classes in your project?
How to use delegates with events?