Twitter About Home

MVC in the browser

Complex user interfaces in ASP.NET – what a pain! If you’re adding and removing controls at runtime, or even just trying to embed custom controls in a GridView, you’ll know how it can all break down into a sorry mess of events not firing, controls losing their viewstate, and you spending the afternoon fighting the VS debugger and cursing those sadists who invented the ‘page lifecycle’…!

Published Aug 13, 2007

Demo

First, take a look at this, and think about how you would implement this sort of UI in ASP.NET. It’s a live demo, so have a play – you can add, remove and rename folders.

Click this link to open the demo in a new window

In standard, server-centric ASP.NET, this would be incredibly painful to create. You’d be fussing over viewstate, naming containers, event bubbling, and every button-press from the end user would result in a long, tedious postback. Even just maintaining the tree expansion state between postbacks would be awkward.

On the other hand, it’s delightfully simple if you put your brain into Model-View-Controller (MVC) mode, and use a bit of Javascript and XSLT.

Architecture

For simplicity, we’re using

  • XML to represent our data model

    (view this by clicking “Show model XML” in the demo)

  • XSLT to build the HTML view of the model
  • Some Javascript code to act as controller

The basic mechanics of this UI technique are thus:

js-mvc

When the user finally submits the form to the server (e.g. postback in ASP.NET), the TEXTAREA contains the updated XML data model, which is easily parsed, validated and processed by the server.

Browser support

For this to work, your browser has to be able to

  • Parse an XML string into an XML document (and serialize it back)
  • Transform an XML document using XSLT
  • Support XPATH queries in Javascript

All modern browsers can do the above natively, but if you need to support one that doesn’t – but it does support AJAX (XMLHttpRequest) – you can do the parsing/transforming on the server.

In the example, I wrote code that natively supports IE and Firefox, but when I’ve used this technique in production, I used the excellent Sarissa library to handle all the cross-platform business and give me wider browser support.

The good

  • You can build increasingly sophisticated UIs without building increasingly sophisticated code to support it.
  • XML/XSLT handle repeating/recursive UIs so very naturally
  • It’s dead easy to mix this approach with standard ASP.NET web controls, because the MVC controls naturally retain their state between postbacks.
  • It’s like instant AJAX. In other words, the end user experience is one where the UI updates immediately without postbacks, but it’s even better because there are no asynchronous HTTP requests to wait for. Of course you can’t do everything you could with classic AJAX.

The bad

  • Though this technique is great for highly dynamic UIs (especially repeating/recursive ones), it’s overkill for simple forms
  • You can’t embed ASP.NET server-side controls inside the MVC controls (but you can use them elsewhere on the same page).

The ugly

If there’s one thing I really don’t like here it’s XSLT. Oh yes it’s very clever, but it’s ridiculously verbose and virtually impossible to read quickly. And it lacks extensibility. It just looks ugly! If anyone’s interested, I may follow this up with a tutorial on building simpler, faster and more powerful MVC UIs using the fabulous JSON.

Download

To examine the demo more closely, download the source code and run it locally. Note: Internet Explorer may prevent you from running Javascript from the “local computer” zone, so if in doubt, use Firefox!

READ NEXT

Geolocation is easier (and cheaper) than you think

Most of the time when you’re surfing the web, or creating web applications, you don’t expect real geography to be involved. Historically it’s been tricky to identify with any accuracy or reliability the physical location of your visitors, and might even be said to contravene the spirit of the web. But if what if you really do want to take action based on where they’re coming from?

Published Sep 13, 2007