This session discussed how you can use ASP.NET AJAX controls and take advantage of Silverlight at the same time - creating a server control using the ASP.NET AJAX server control framework that uses Silverlight for its presentation.

There are several advantages to doing things like this - you can do this to slowly migrate a site to using Silverlight (one control at a time); you can separate the presentation of the control into code and XAML, giving more control to site designers; and it gives you new abilities using cross-platform vector graphics.

The meat of this presentation was code, so there’s not a lot of bullet-point style items to recount, but there were two controls shown using this technique. The first was a slideshow control that used Silverlight to show a nice transition when switching pictures in the slideshow; the second was a dynamic graph of stock prices that refreshed periodically.

The pattern for doing this is similar to that of creating other ASP.NET AJAX controls. To that end, both demos were done by deriving from the Xaml control that has a lot of base functionality and implements the proper AJAX script interface and saves you time when starting your own XAML based controls. The Xaml control is a part of ASP.NET Futures (so it’s not the base package yet but should be soon).

Basically there are three parts - write your XAML to handle the UI, set the XamlUrl property on the Xaml control so it knows how to display, and write the client script to work against the XAML tree. Obviously that’s pretty simplified, but it seems to me that the hard part really is working out the proper JavaScript to manipulate the XAML and intercept the events. ASP.NET AJAX seems to have a lot of helpers and convenience methods to make this easier, but if you’re not writing this in Orcas I can see where it’ll be a little slow to ramp up on.

I like the approach of writing controls using Silverlight. The ability to slowly migrate a site or individual functionality over to use Silverlight one control at a time is appealing. I can envision several charting or graphing applications I could use this sort of thing in.

This session was a more general “patterns” type of session where there were several UI patterns demonstrated to help you make a better user experience when working in AJAX.

The patterns and principles discussed can be found in the Yahoo! Design Patterns Library.

The idea is that a common vocabulary needs to be arrived at so designers and developers can have meaningful discussion about user interaction.

Principle - Keep a Light Footprint The idea here is that in a rich Internet application you can reduce the number of steps in a workflow or process and ensure simple interactions are simple. Identify pain points in the process and shorten the path. Design for engagement - keep the user’s attention. An interesting side note - it’s good to make things easier, but in some cases a design can have a very real economic impact on the application - for example, providing a lot of pre-action-lookup (like if Google Suggest returned search results, not just search terms) might make your application less scalable and require a lot more hardware to support.

Patterns: Inline Editing, In-Context Tools, Drag and Drop.

Principle - Cross Borders Reluctantly If you don’t have to take the user to a whole new page, don’t. Rethink flows - base the flow on the user model, not a page model. Rethink paging - could you use scrolling or a carousel instead?

Patterns: Hover Details, On-Demand Scrolling, In-Context Expand, Inline Assistance, Lightweight Popups, Lightbox.

Principle - Give Live Feedback Let the user preview the result of their action where possible. Provide things like field validation, inline previews (like a clothing store that lets you see what a piece of clothing might look like on you prior to you purchasing it), and so on. Try to prevent errors before they happen. If you refresh data on the page, be careful it’s not distracting or annoying. When an action takes place, let the user know what happened.

Patterns: Live Suggest, Auto Complete, Periodic Refresh, Busy Indicators.

Principle - Offer an Invitation Let the interface be discoverable by inviting the user to take relevant actions. Bridge the new with the old - use hyperlinks (a commonly understood indicator of action) provide a route to discovery, for example. Keep actions out of it - if you take actions as the user explores the interface, it makes them reluctant to search out new functionality. Unfortunately, there’s no easy/single solution to this.

Patterns: Hover Invitation, Tour Invitation, Drop Invitation, Tooltip

Principle - Show Transitions Show a user what happened (like when an item is deleted) by using transitions. For example, if an item is removed from a list, fade the deleted item out and shrink the list in an animated fashion to show the item being visually removed.

Patterns: Self-Healing Transition, Slide Transition, Active Spotlight.

Anyway, some great pointers. Definitely gives me some ideas for ways to solve some of the UI problems we face every day at work.

I just emerged from a standing-room-only demonstration of how to work with Silverlight and JavaScript. It seems that the managed code way of working with Silverlight is a 1.1 thing that’s coming soon (before Summer 07? I’d have to see the slides again); if you want to write a Silverlight application today, you’ll be using JavaScript.

It looks like working in Silverlight with XAML with JavaScript is a lot like working with the HTML DOM in JavaScript. You get elements, you manipulate properties, you respond to events… and it’s just as hard to debug as your standard client-side JavaScript app. The demos were interesting, showing how you do different things like start animations, intercept mouse events… but they were far from bug-free. I guess that’s just one of the pain points for early adoption.

Beyond that pain point, though, it looks pretty good. No harder than doing stuff you’re probably already doing, but with a much richer end result.

Two of the key things shown were the Downloader and the CreateFromXAML call.

The Downloader is a component that allows you to synchronously or asynchronously download content. It will also report on the status of the progress as it goes, so you can have an actual progress bar. This looks useful if you’ve got some large content like a lot of video where you want to download some to cache before starting the video playing. The Downloader supports ZIP, too, so if you have some compressed content to download, you’re set to go.

The CreateFromXAML method is sort of like an “eval” call - it takes some XAML that you’ve built up in code and parses it into native XAML nodes that can be inserted into your application. This is handy for building XAML content programmatically - say, adding rows to a table.

I like what I’ve seen so far from Silverlight, but I’ve yet to get some hands-on. I think my next stop is the lab area where you can get some first-hand experience with it by going through some walkthroughs and such.

I admit I’ve been lax and haven’t been installing the Visual Studio “Orcas” releases. I’ve followed the cool stuff, but I haven’t actually installed it. This session made me wish we were already in this.

The session was called “Developing AJAX Applications with Visual Studio ‘Orcas’” but it should have been called “New ASP.NET Controls and How Visual Studio Supports JavaScript Development.”

In the non-JavaScript developments, we see new controls of interest in ASP.NET 3.5. The ListView control is sort of like a repeater but gives you a little more control over list creation. For example, you could set a list template to something like <ul runat="server"></ul> and a list item template of <li><%# DataBoundField %></li> to make an unordered list… and the output HTML is no more or less than exactly what you specified - great control over the HTML. The DataPager control is an extender for any databound control that allows you to easily add paging

  • no more having to natively support it in your controls.

The JavaScript developments were the big show here, though. Full Intellisense for JavaScript including keywords, declared variables, properties, methods… even if you reference an external JavaScript file, it’ll figure that out and give you Intellisense for all of those methods. And it’s smart about it - it does dynamic type evaluation on variables, for example, and figures out that at the time you’re asking for Intellisense it’s, say, a number, so you only see the Intellisense for methods applicable to numeric objects. Hot.

To assist in the Intellisense effort, they’ve added XML documentation support such that the Intellisense is driven by the XML doc comments in your script. If you document your script, it’ll appear just like standard .NET Intellisense with method descriptions, parameter information, and so on. To get around the loose typing of JavaScript, you add attributes to the XML doc comments to tell Intellisense what the expected parameter types and what the return type of the method is (<param name="myParam" type="String">Some Parameter</param>). Specifying the return type is how the Intellisense knows the way to treat return values from your methods. ASP.NET AJAX libraries will all be commented this way.

JavaScript debugging is vastly improved, too. If you have a script in your page, you can set a breakpoint in the page and *gasp* when you run the page it’ll break on your breakpoint. This is a huge improvement because you used to have to figure out where in your ASPX the script really was and try to figure out whether the breakpoint was actually hit… and sometimes it wasn’t… it was just a nightmare. Now? Brilliance.

Ray Ozzie opened the keynotes today and gave a general intro to MIX07. This was a pretty general overview and focused a lot on the release of Silverlight, Microsoft’s Flash competitor. It was an interesting talk, but was mostly benign.

After that, Scott Guthrie came up and that’s when the really good stuff started. Lots of great announcements:

  • Silverlight is out, released for download just a little bit ago.
  • Silverlight comes with a cross-platform .NET framework that runs in the browser. With that comes a lot of interesting things:
    • Initial support is for Firefox, IE, and Safari. Yes, it runs on Mac.
    • You can now write client-side code on any Silverlight-enabled browser in any .NET language you like.
    • Client-side code in .NET has HTML DOM access including all of the browser components (status bar, etc.) and runs thousands of times faster than JavaScript.
    • There are robust data services including LINQ and caching built-in.
  • There’s a new service called Silverlight Streaming that lets you upload your Silverlight application and assets, up to 4GB, and Microsoft will host it for free. That’s a huge bandwidth-saver for folks wanting to use Silverlight to stream video, etc.
  • New Visual Studio (Orcas) feature - Core CLR Remote Cross-Platform Debugging. You can runtime debug a Silverlight application executing in a browser on another machine, including remote debugging to a Safari instance on a Mac. This is huge. Guthrie demonstrated one of these sessions, intercepting events and changing values in the debug session on the fly and those values get real-time updated in the target session. Very, very cool.
  • Silverlight projects seem to work like other Visual Studio projects, including the ability to “Add Web Reference” and have your Silverlight applications call web services.
  • If you have a web application project in Visual Studio, you can put that in the same solution as your Silverlight app and then select “Add Silverlight Link” to your web application. When you build your web app, the Silverlight app automatically rebuilds and deploys.
  • The dynamic language support in .NET is growing. They’ve got support for Python and JavaScript and are adding official support for Ruby via IronRuby. They’ll be releasing that source just like IronPython.
  • This dynamic language support has an additional meaning - you can write your Silverlight apps in any of those languages as well. And, again, they’ll run cross-platform. Huge.
  • It installs in like three seconds. The demo showed a user experience for someone coming to a Silverlight app and not having the plugin installed. From the point where the user clicks the “Install” link to the point where the app is running was about three seconds. It was super fast.
  • After Summer 07 they’ll be adding even better mobile support. It has pretty good support now (also demonstrated) but I guess they’re adding more.

There seems to be a big focus on delivering video with Silverlight. Most of the demos they showed involved integrating video. It does a lot more than that, and I can envision a lot of cool XAML based apps I could write, but there’s a huge video push, going so far as having NetFlix come in and demonstrate an application where you can watch movies on-demand.

The Silverlight community site is at http://www.silverlight.net. Check it out.