What is a bubbled event?

Answers were Sorted based on User's Feedback



What is a bubbled event? ..

Answer / payal

in case of some server controlls like
datagrid,repeter,datalist in that we can add another
another also like suppose in datagrid we can add check box
and in that the check event is not raised by itself or
check box.

check box is in datagrid so that datagrid is parent and
checkbox is child so that check box send check event to
parent that is datagrid .

this pass event from child to parent is called event
bubbled.then parent pass it to page using itemtemplate

<itemtemplate>
<asp:checkbox id=chk1;oncheck="chked">
</itemtemplate>

in that chked is subroutine and oncheck is event so that
chked is always public or protected

public sub chked(by val e as event,by val---)

//code
end sub

event bubbling
pass event-from-child-to-parent

Is This Answer Correct ?    12 Yes 1 No

What is a bubbled event? ..

Answer / swapna

When you have a complex control, likeDataGrid, writing an
event processing routine for each object (cell, button,row,
etc.) is quite tediousdifficult.

The controls can bubble up their eventhandlers, allowing
the main DataGrid event handler to take care of its
constituents.

Suppose you want a certain ASP.NET function executed on
MouseOver over a certain button.

Is This Answer Correct ?    9 Yes 2 No

Post New Answer

More ASP.NET Interview Questions

What are the security types in asp.net?

0 Answers  


How many types of session in ASP.NET

0 Answers   MCN Solutions,


Do I need to have the latest version of windows media player installed?

0 Answers  


What are the Types of chaching. How to implement caching

0 Answers   Microsoft,


What are user controls and custom controls ?

1 Answers  






Explain the various authentication mechanisms in asp.net.

0 Answers  


Asp.net and asp ? differences?

2 Answers  


How is it possible for .NET to support many languages?

0 Answers  


What is http protocol and how it works?

0 Answers  


How to set the pane area to transparent of a scrollPane component.?

0 Answers   MCN Solutions,


Explain the difference between AutoPostBack and IspostBack in ASP.NET?

0 Answers   Sans Pareil IT Services,


How do you remove duplicates without using remove duplicate stage?

0 Answers  


Categories