Update to AsyncClientConnector control for ASP.NET V2
A little while ago I released a control that makes it easier to use Asynchronous Client Script callbacks within ASP.NET V2. The original post is here ( http://weblogs.asp.net/pglavich/archive/2005/05/11/406348.aspx ).
As you may or may not be aware, the ICallbackEventHandler interface that is used with this has now changed slightly. Originally, the interface contained only 1 method:
string RaiseCallbackEvent(string arg);
But now, there are 2 methods:
void RaiseCallbackEvent(string arg);
string GetCallbackResult();
The reasons for this are primarily to support asynchronous data sources and are detailed in Betrand Leroys blog. I have updated this control to now use the latest incarnation of the ICallbackEventHandler interface and therefore make it compatible with the latest release of ASP.NET 2.0 and hopefully the RTM version.
You can download it from my personal site or from the Project Distributor site. Hope you find it useful.