Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What is event bubbling
What is event bubbling ?
✍: Guest
Server controls like Datagrid, DataList, Repeater can have other child controls inside them. Example DataGrid can have combo box inside datagrid. These child control do not raise there events by themselves, rather they pass the event to the container parent (which can be a datagrid, datalist, repeater), which passed to the page as “ItemCommand” event. As the child control send there events to parent this is termed as event bubbling.
2007-10-24, 5746👍, 0💬
Popular Posts:
Does .NET support UNICODE and how do you know it supports? Yes .NET definitely supports UNICODE. Try...
How do I force the Dispose method to be called automatically, as clients can forget to call Dispose ...
What is ISO? ISO 9000 is a family of standards for quality management systems. ISO 9000 is maintaine...
What will be printed as the result of the operation below: main() { int x=10, y=15; x = x++; y = ++y...
What invokes a thread's run() method? After a thread is started, via its start() method of the Threa...