PDC ASP.NET Panel Discussion - Non-Postback Callbacks to Pages

A new feature in Whidbey will allow controls to make calls directly back to page methods without making full postbacks.  This features uses XMLHTTP behind the scenes and allows controls to talk to the server in an optimized fashion without requiring a full postback.  In the 1.x timeframe, a solution for this which you can use today (and which actually may be simpler to implement based on what I've seen), is remote scripting.  Remote scripting was available in ASP 3.x but wasn't widely known to most ASP developers.  Jonathan Cogley of AspAlliance has written up a toolkit that makes implementing cross-browser remote scripting (non-postback callbacks to the server) very easy to implement in ASP.NET, including 1.x.

Cross Browser Remote Scripting Client

ASP.NET Remote Scripting

No Comments