Script Callbacks in ASP.NET 2.0 interface changes in Visual Studio July CTP
Posted by: Rick Strahls WebLog,
on 31 Jul 2005 |
View original
The July CTP of VS.NET changes the ICallbackEventHandler interface by splitting the single RaiseCallbackEvent in Beta2 into two separate events, PrepareCallbackEvent and RenderCallbackResult. So now instead of having to implement a single brain dead methods we get to implement two methods and pass state between them.
If you read my previous post where I created a CallbackEvent class to manage multiple callbacks, this is what this process looks like now with the new interface definition:
public...