Well i have say 2 buttons when i click on button 1 or button 2 there respective Event-handlers will be executed on server right // ..
My doubt is how server knows & differentiate b/w button 1 & 2 event_procedures depending on the click ?
Cheers
My doubt is how server knows & differentiate b/w button 1 & 2 event_procedures depending on the click ?
Cheers
Thank you

Sunny SharmaPosted Sep 7, 2013, 4:49 AM
This is quite a basic fundamental but i would love to tell you that. For every control that has an event associated with it, must have a valid Identifier (ID property) assigned to it.
This is how the Server knows about what event to fire when you click button A or you click button B. It invokes the event that is associated with clicked Button.
Hope I answered your question.
Happy Learning :)
SUNIL GUTTAPosted Sep 7, 2013, 10:01 AM
Thank you for help