what is bubbled event ? give suitable example in code vice
with demo

Answers were Sorted based on User's Feedback



what is bubbled event ? give suitable example in code vice with demo..

Answer / 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

what is bubbled event ? give suitable example in code vice with demo..

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

Post New Answer

More C Sharp Interview Questions

Say true or false,Private constructor have object or not?

7 Answers   IBM,


Can a class or a struct have multiple constructors?

0 Answers  


What is marshalling and what are different kinds of marshalling?

0 Answers  


What are virtual methods? How are they used?

3 Answers   TCS,


what will be the output of the given below coding. using System; public class Exercise { static void OddNumbers(int a) { if (a >= 1) { Console.Write("{0}, ", a); a -= 2; OddNumbers(a); } } public static int Main() { const int Number = 9; Console.WriteLine("Odd Numbers"); OddNumbers(Number); Console.WriteLine(); return 0; } }

1 Answers   iGate,


What are the benefits of using generics in c#?

0 Answers  


Can we override interface method?

0 Answers  


what happens if you inherit multiple interfaces and they have conflicting method names?

0 Answers   Siebel Systems,


is it possible to access a remote web service Without UDDI?

0 Answers   TCS,


What is a method signature c#?

0 Answers  


Can we write one page in c# and other in vb in one application ?

3 Answers   Keane India Ltd,


What?s an interface class?

5 Answers   Mind Tree,


Categories