ASP.Net Programming Question: Download ASP.Net PDF

What is a bubbled event?

Tweet Share WhatsApp

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 PDF Read All 28 ASP.Net Questions
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?