ASP.NET 2.0 - Cool New Features
Sometimes when I am focused in one area I miss obvious, cool new features in another area. Specifically, I am talking about cross-page postbacks, client callback manager, an asynchronous pages in ASP.NET 2.0.
Cross-page postbacks means that a second page has an object reference to the page that caused the postback. This means you can read properties and control values right off the preceding page. No more stuffing values in query strings or in session for this simple maneuver.
Client callback manager seems to be like Ajax - lighweight or soft HTTP asynchronous posts. This ought to give your applications a real kick in the shorts.
Finally, asynchronous pages. Got a long running query? Why not do as many other tasks as you can while the database is working in the background?
If you want to find out how to use these features then check out upcoming articles in VB Today column on codeguru.com.
