what is bubbled event ? give suitable example in code vice
with demo
Answer Posted / k l baiju
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 |
Post New Answer View All Answers
What is the real use of interface in c#?
What are the benefits of using the aggregate method in linq?
Why do we still see so much non-oo code written in c# today?
What are Regex / regular expressions ?
What does assert() do in c#?
Explain attributes in c#?
Can you use foreach iteration on arrays in c#?
Explain the feature of c# language?
What is serialization of data?
Why do we need generics in c#?
What are satellite assemblies? How will you get the different language strings?
What is selector c#?
How can I check the type of an object at runtime?
What is Covariance and contravariance in C#?
What is the use of inheritance in c#?