Microsoft to Release AJAX Framework
An anonymous reader writes "News.com is announcing that Microsoft has announced plans to release a JavaScript client framework library for use with ASP.NET 2.0 that makes AJAX style browser clients easier to code. Developers who attend Microsoft's PDC conference in September have been promised an early release of the code."
Is Atlas any different from Client-side CallBacks which is a long known feature of asp.net 2.0? I suspect it is not different. If not, it's interesting how Microsoft's marketing department got several news outlets (eWeek, InformationWeek) to report a long known feature as news.
Except that MS invented the XMLHttpRequest object which makes AJAX possible.
So maybe you should have said "MS invented the XMLHttpRequest object which makes AJAX somewhat more convenient."
Do not speak unless you can improve on the silence.
Just look at it as distributed computing. The clients do the visual transformation so the server doesn't have to. The effects of this are two-fold:
First, reduced bandwidth. Not for you, though. Nobody (aside from you) cares how much bandwidth you have to use to view a single web page. People care how much bandwidth it takes to serve their own page thousands of times. Minimizing this figure saves money.
Second, server load. Again, thousands (or in some cases hundreds of thousands) of hits tends to put a strain on systems like this. If we offload visual transformations to the client, we save time on our server and our web pages are sent out faster.
Both of these result in reduced costs for website owners. It's what's going to make sure the internet stays as free as it can be.
Kumbaya.
Mods: Do you disagree with me? Go ahead and mod me down. Meta-mods will sort it out. Good luck!
Simple enough to bang in some workarounds with Greasemonkey I reckon?
function ActiveXObject(name) {
if (name == "Microsoft.XMLHTTP") {
if (window.XMLHttpRequest) {
return new window.XMLHttpRequest();
}
}
return undefined;
}