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

Is asp.net outdated?

0 Answers  


You need to retrieve data from a Microsoft SQL Server 2000. Currently you are using an oleDbConnection object to connect to the database server. You need to be able to retrieve the data from the database server in XML format. Which approach would be the most efficient? Select all that apply. Each answer constitutes part of the whole answer. a) Change to the SQL .NET provider. b) Use the ExecuteXmlReader() method of the xxxCommand object c) Use the DOM to create the XML document. d) Use the XmlDocument.Load() method to create the XML Document.

1 Answers   Syntax Softtech,


Can u able to get the xml document in crystal report if yes how its possible

2 Answers  


What are the namespaces used in asp.net mvc? : asp.net mvc

0 Answers  


What are the different types of sessions in asp.net? Name them?

0 Answers  






Explain cookies with example.

0 Answers  


To match the two different controls which control would we use ?

2 Answers   Siebel,


Define secured sockets layer.

0 Answers  


Where would you use an IHttpModule, and what are the limitations of anyapproach you might take in implementing one?

1 Answers   Siebel Systems,


“~” means in asp.net application?

4 Answers   IBS,


what is loosely coupled solution? How it can be used?

0 Answers   Siebel,


Suggest 3 best practices in detail for for Developing High Performance Web and Enterprise Applications

2 Answers   Techno Solutions,


Categories