What is a bubbled event?
Answers were Sorted based on User's Feedback
Answer / payal
in case of some server controlls like
datagrid,repeter,datalist in that we can add another
another also like suppose in datagrid we can add check box
and in that the check event is not raised by itself or
check box.
check box is in datagrid so that datagrid is parent and
checkbox is child so that check box send check event to
parent that is datagrid .
this pass event from child to parent is called event
bubbled.then parent pass it to page using itemtemplate
<itemtemplate>
<asp:checkbox id=chk1;oncheck="chked">
</itemtemplate>
in that chked is subroutine and oncheck is event so that
chked is always public or protected
public sub chked(by val e as event,by val---)
//code
end sub
event bubbling
pass event-from-child-to-parent
| Is This Answer Correct ? | 12 Yes | 1 No |
When you have a complex control, likeDataGrid, writing an
event processing routine for each object (cell, button,row,
etc.) is quite tediousdifficult.
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 ? | 9 Yes | 2 No |
Can the action attribute of a server-side tag be set to a value and if not how can you possibly pass data from a form page to a subsequent page?
What is Assert Method ?
What is http protocol and how it works?
Describe the difference between inline and code behind.
What do you mean by authorization?
Why do I get error message "could not load type" whenever I browse to my asp.net web site?
How many Directives r in ASP.NET?
What is the difference between the response.write() and response.output.write() methods?
Where is asp.net session stored?
For a server control, you need to have same properties like color maxlength, size, and allowed character throughout the application. How do you handle this?
What is boxing and unboxing in asp.net?
Write the different features of a Thread and a Process?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)