1) A user who selects an item in a DropDownList is considered a postback, and for this reason DropDownList implements IPostbackDataHandler.
a) But why the user does not move (in calendar control) to another month, is also considered a postback of data? Thus, why does Calendar implement IPostbackEventHandler and not IPostbackDataHandler?
2)
a) I assume that controls that implement IPostbackEventHandler instead of IPostbackDataHandler will never receive postback data?
b) If the control implements IPostbackDataHandler, then the postback event control will be triggered every time its data is changed, even if this control did not cause a postback
But if the control implements IPostbackEventHandler, then only the time that monitors the postback event will be raised if that control also caused a postback?
Prggn
source share