hi
1) User selecting an item in DropDownList is considered to be postback data, and for that reason DropDownList implements IPostbackDataHandler.
a) But why isn’t user moving ( in Calendar control ) to another month also considered a postback data? Thus, why does Calendar implement IPostbackEventHandler and not IPostbackDataHandler?
2)
a) I assume that controls implementing IPostbackEventHandler instead of IPostbackDataHandler never receive postback data?
b) If control implements IPostbackDataHandler, then control’s postback event will be fired each time its data changed, even if that control didn’t caused a postback
But if control implements IPostbackEventHandler, then only time that control’s postback event will be raised is if that control also triggered a postback?
thank you