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
Types of instancing properties and explain each. Tell the difference between multiuse,singleuse and globalmultiuse and which is default ?
What is the difference between union and join?
Explain how can we inherit a static member?
What are themes and skins in 2.0, explain usage scenario?
How is a session stored and maintained in asp.net?
What are validator? Name the validation controls in asp.net? How do you disable them? Will the asp.net validators run in server side or client side? How do you do client-side validation in .net? How to disable validator control by client side javascript?
Explain about Automatic resource management?
Difference between application events and session events
How would you turn off cookies on a page of a website?
Explain asp.net page life cycle?
What is use of Master Page in ASP.NET web pages?
Explain about the Class view window?
Explain the difference between authentication and authorization.
Define static function?
Explain login controls.