ASP.Net Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 599 Page Views: 

What can be done with a control having bubbled event?



Posted By: Avi Date: 4 October 2010 04:23:20 AM
 Answer:

The control can perform the following three things if it has bubbled event:- 1. Nothing is done. In this case the event is automatically bubbled up to its parent. 2. Some processing is done and continues to bubble the event. Here a control must override OnBubbleEvent and should invoke RaiseBubbleEvent. 3. The event stops bubbling and raises the event. A control must override OnBubbleEvent and should invoke the OnEventName method that raises the bubbled event.


Posted By: avibtech


Date: 4 October 2010 04:23:20 AM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image kwct4w
Related Questions
ASP.Net : Is it possible to set ControlToValidtae property on themes or style sheet themes in ASP.Net?

Is it possible to set ControlToValidtae property on themes or style sheet themes in ASP.Net?

No,it is not possible to set this property on themes or style sheet themes in ASP.Net.
Category: ASP.Net Date: 10/1/2010 5:54:13 AM
ASP.Net : Name the method to kill the user session in asp.net?

Name the method to kill the user session in asp.net?

Session.Abandon
Category: ASP.Net Date: 10/1/2010 5:36:14 AM
ASP.Net : Diifrentiate between "Machine.config" and "Web.config"?

Diifrentiate between "Machine.config" and "Web.config"?

Machine.Config:- This file applies settings to all the ASP.net applications. We.Config:- This files ....
Category: ASP.Net Date: 10/1/2010 5:05:14 AM
ASP.Net : Define assembly?

Define assembly?

Assembly is the unit of deployment which can be an EXE file or a .DLL file. It consist of one or mor....
Category: ASP.Net Date: 10/1/2010 5:02:14 AM
ASP.Net : Diffrentiate between DataGrid and DataList?

Diffrentiate between DataGrid and DataList?

Both datagrid and datalist are used for displaying the data. But there are several differences betwe....
Category: ASP.Net Date: 10/1/2010 4:59:19 AM