I'm trying to write an AJAX enabled WebControl. This is my first AJAX control and apart from the usual use of UpdatePanels and ScriptManagers, I've not got a lot of experience in the other angles and use of AJAX.
I've found a number of examples and projects that claim to be AJAX enabled control's, although they all seem to be missing the final step, i.e. How to actually start calling server side methods from the Client Side.
This is the example I'm currently working with: http://dotnetslackers.com/articles/ajax/ASPNETAJAXControlDevelopment.aspx
Fair enough, it shows how to extend the DOM model with some extra events... However, it never actually seems to do anything server side once it's created?
How would I go about firing off some server side methods within my control class (ImageButton.cs in that example)?