What's a bubbled event?
Answers were Sorted based on User's Feedback
Answer / akn
When you have a complex control,like Data Grid,writing an
event [rocessing routine for each object
(cell,button,row,etc) is quite tedious.the controls can
bubble up their event handlers,allowing the main Data Grid
event handler to take care of its constituents.
Is This Answer Correct ? | 5 Yes | 3 No |
Answer / nikhil
a bubbled event is the process of moving an event up the
control hierarchy from a control low in the hierarchy such
as a button in the datagrid ans prelocating it upto an
ancestor control.
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / sulochana singh
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.
Is This Answer Correct ? | 0 Yes | 0 No |
When a dropdownlist has been added by some records and it has been binded why it is not executing i'm facing this error pls help me ? if (is!pageposback) { arraylist books = new arraylist; books.add ("gone with the wind"); books.add ("rahulsriramprakash"); books.add ("vishal"); dropdowndisplay.datasource=books; dropdowndisplay.databind(); } The error is : 1) The dropdowndisplay does not exist.
What are different types of directives in .NET ?
What are the features of asp.net mvc?
How to kill session?
What is actually returned from server to the browser when a browser requests an .aspx file and the file is displayed?
What is validationsummary server control? where it is used ?
What type of code, client-side or server-side, is found in a code-behind file of a Web page?
What is syntax code to send email from an asp.net application?
Why is catch(Exception) almost always a bad idea?
What is difference between Lambda Expression and LINQ in ASP.NET?
What is the difference between union and join?
Which platform does Microsoft .NET use for exchanging data between applications?