Answer Posted / 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 |
Post New Answer View All Answers
Disable Mouse right click on web page in asp.net?
Define the term Scavenging in Caching?
Why is string called immutable data type?
How do you handle server controls?
Explain the basic functionality of garbage collector?
Explain different authentication modes in asp.net?
What is the difference between c# and .net?
Explain form level validation and field level validation?
What is query string in asp.net?
When you use Ajax controls in the ASP.NET application?
Is it possible to write code in many languages in one asp.net project?
What is the difference between custom web user control and a custom web server control?
Explain the difference between the web config and machine config.
What are the differences between clr & cts?
Can viewstate be accessed in another page?