I'm writing a web app. The web app is fully written in GWT, no other
technology is used. Currently i'm having just one html page the
index.html. It looks like this:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>
  <head>
    <meta http-equiv="content-type" content="text/html;
charset=UTF-8">
    <title>Index</title>
    <script type="text/javascript" language="javascript"
src="myProject.Index.nocache.js"></script>
  </head>

  <body>

    <iframe src="javascript:''" id="__gwt_historyFrame" tabIndex='-1'
style="position:absolute;width:0;height:0;border:0"></iframe>

        <div id="screen" >
         <div id="site" >
         </div>
    </div>

  </body>
</html>


I'm having a question about the design of gwt web app.
1) Suffices it to have only one Index.html, or should there be other
pages like for example fotos.html or guestbook.html instead of
FotosWidget.java or GuestbookWidget.java?
2) What about the speed of loading the web app, when using a single
html page structure?
3) What about search engines? Is this structure okay for search
engines?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to