ASP.Net Programming Question:
Download Questions PDF

What is a bubbled event?

Answer:

When you have a complex control, likeDataGrid, writing an event processing routine for each object (cell, button,row, etc.) is quite tedious. 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.

Download ASP.Net Interview Questions And Answers PDF

Previous QuestionNext Question
What is the difference between Codebehind="MyCode.aspx.cs" and Src="MyCode.aspx.cs"?What data type does the RangeValidator control support?