Wil,

Regarding splitting things into multiple HTMLs: Well yes and no. The new Web Framework employs the application in a page concept. You can break this into multiple pages but then you need to understand what the implications are for your application's user-experience. Each time you navigate to a different URL, all of the cached data will be lost, so all the views you were accessing in the last page will be effectively flushed.

This is pretty much how the current AJAX library works. i.e. each view is loaded by loading a different URL. But in the new framework the best experience will be found if you are not loading different URLs, even though technically there is no reason why you cannot do that.

regards John van Houten