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

How does the RaiseBubbleEvent works?



Posted By: Avi Date: 5 October 2010 12:50:20 AM
 Answer:

RaiseBubbleEvent implementation is done with the help of control , which cannot be overridden. The event data is sent up the hierarchy to the control's parent by RaiseBubbleEvent. In order to raise a bubbled event , the control has to override the OnBubbleEvent method.


Posted By: avibtech


Date: 5 October 2010 12:50: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 5vCGxB
Related Questions
ASP.Net : A web page page1.aspx calls page2.aspx to perform some computation. Page2.aspx does not have a UI. What code statement should be used to invoke page2.aspx?
ASP.Net : What is a main difference Between Machine.config and Web.config?

What is a main difference Between Machine.config and Web.config?

Machine.config: Configuration file for all the web applications in the system. Web.config: Configur....
Category: ASP.Net Date: 8/22/2009 7:28:17 AM
ASP.Net : What is the difference between Session.Abandon() and Session.Clear()?

What is the difference between Session.Abandon() and Session.Clear()?

Session.Abandon() method destroys all the objects stored in a Session object and releases their reso....
Category: ASP.Net Date: 8/6/2009 1:28:06 AM
ASP.Net : What are the various modes of ASP.Net SessionState?

What are the various modes of ASP.Net SessionState?

ASP.NET supports three modes of session state:

InProc:
In-Proc mode stores val....
Category: ASP.Net Date: 8/6/2009 1:12:14 AM
ASP.Net : What is a ViewState?

What is a ViewState?

ViewState is the technique used by an ASP.NET Web page to persist changes to the state of a Web Form....
Category: ASP.Net Date: 8/6/2009 12:27:37 AM