top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What's a bubbled event in ASP?

+1 vote
170 views
What's a bubbled event in ASP?
posted Sep 22, 2015 by Sathyasree

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

When you have a complex control, like DataGrid, writing an event processing routine for each object (cell, button, row and so on) is quite tedious. The controls can bubble up their event handlers, 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.

answer Sep 22, 2015 by Shivaranjini
...