Microsoft ASP.NET Ajax Road Map
Microsoft has come out with a road map for the Ajax side of ASP.NET, which has been simplified to be just: Framework and tools in one versioned package; Ajax components will be released separately on Codeplex.
There is a bold goal at the beginning of the document (why is the doc a PDF/.doc and not just HTML!!!):
Make ASP.NET Ajax the first-class choice for all Web 2.0 developers
They are going to be catching up with richer CSS selection and DOM manipulation:
-
-
$query(“textarea.rich”)
-
.addHandler(“focus”, function(e) {
-
Sys.Debug.trace(“focused into “ + (e.eventTarget.id || “?”));
-
})
-
.setStyle(“width”, function() {
-
return (document.body.clientWidth – 10) + “px”;
-
})
-
.create(Contoso.UI.RichTextBehavior, {
-
showToolbar: true,
-
fonts: [“Arial”, “Times”, “Courier”]
-
});
-
We have got some animation going on:
-
-
$query(“.sprite”).animate([
-
new Sys.Animation.FadeIn(300),
-
{
-
“style.backgroundColor”: “#ff0000”,
-
“style.fontSize”: “2em”),
-
duration: 500
-
},
-
new Sys.Animation.FadeOut(300)
-
])
-
);
-
What else?
- Accessibility
- Drag & Drop
- Client-side Controls and Behavior
- Interoperability: OpenAjax hub support
- Tooling, tooling, tooling





