I looked some google web application and found that a lot of them keep
this layout
----------------------------------------
head
----------------------------------------
menu | <div id="dynamic-content">
items |
| </div>
----------------------------------------
>From my eyes, GWT is very good at this architecture and very clean.
Unfortunately, some are not, say two screens exist, one is sign on page
and the another is register page. Shoud I write like this?
<html>
<body>
<div id="dynamic-content"></div>
</body>
</html>
Or keeping two modules? what's your thoughts?
Thanks.
/Jack