colinramsay.co.uk

Some Ajax niceties for ASP.net and more

26 Jan 2006

ComfortASP is an AJAX like framework for ASP.NET which replaces normal postbacks with an XMLHTTPRequest based server call. The page, or sections of the page, will then be automagically replaced by the server response using javascript. If javascript is turned off then the whole thing degrades.

The framework includes some nice controls, including one to scroll to a point on the page when the server response returns. My main concern is that by using this framework, navigating between pages doesn't change the URL in the address bar. It also seems to break my back button in Firefox 1.5.

That's a shame because this is a great idea - abstracting AJAX to the point where you don't have to worry about it at all. But I think there are limitations here that would stop me from using ComfortASP in anger.

In other news, here's a post on doing multiple concurrent XMLHTTPRequests from a single page.

Feedback or questions on this post? Create an issue on GitHub.