Script Callbacks in ASP.NET 2.0 - interesting, but lacking
Posted by: Rick Strahls WebLog,
on 06 Jun 2005 |
View original | NEW Bookmarked: 0 time(s)
Script callbacks basically allow us to make server side callbacks from client side code dynamically updating the client side HTML document without reposting the entire page. It’s Microsoft mangled vision of AJAX <g>…
The concept is pretty cool – the idea is that ASP.NET 2.0 implements an ICallbackEvent interface that can be implemented by a Page or Control which is called back when an event is fired from the client.
The simplest implementation of this...