The question seems to be trivial, but i didn't found an answer with google.
If I have multiple independent controls in a web-form, e.g. DropDownLists and grid, and I need to use postback information from one eventhandler in another eventhandler, therefore i need to make it fire properly one after aonther.
I see a lot of indirect ways to do it - with raise custom event etc., but probably there is better and simpler way to do it?
UPD.: if I need to use postback info from one control in another - e.g. dropdownlist.SelectedValue in RadGrid.NeedDataSource databinding handler - what is the usual way to send it?