TheChaseMan's Frenetic SoapBox

Always looking for better ways to do things...

ASP.NET 2.0 - Client Callback Manager

MSDN has a new article up today: An Overview of the New Services, Controls, and Features in ASP.NET 2.0. I'm jazzed up about all of the many new features to come, and this one is going to be very, very nice for a lot of intranet apps (most of the companies I contract for standardize on IE)...

ASP.NET 2.0 introduces a client callback manager that permits pages to call back to the server without fully posting back. Callbacks are asynchronous and are accomplished with XML-HTTP. They don't include postback data, and they don't force the page to refresh. (On the server side, the page executes as normal up to the PreRender event, but stops short of rendering any HTML.) They do require a browser that supports the XML-HTTP protocol, which generally means Microsoft Internet Explorer 5.0 or higher.


Digg!

posted on Monday, June 14, 2004 10:25 AM

Feedback

# re: ASP.NET 2.0 - Client Callback Manager 3/18/2006 1:45 AM Ishita

At least u could have given a small example

# re: ASP.NET 2.0 - Client Callback Manager 3/20/2006 8:09 AM Sean Chase

Interesting comment Ishita. It reminds me a lot of my 3-year-old who walks up to me sometimes and says, "I want apple juice." To which I have to remind her, "How do you ask for things? You have to ask nicely and say please." I'm assuming you are older than 3, so my response to you will simply be this sarcastic reply rather than a working example. See how that works? Learn from it.

# re: ASP.NET 2.0 - Client Callback Manager 3/20/2006 8:19 AM Michael Kolb

I actually RTFA and enjoyed example given. This is a great technology and I can't wait to implement it. Thanks Sean!