JSP runs on the server and GWT runs on the client and therefore can't just 'include' pages from machines it is not directly connected to (or even read files from the local machine for that matter) What you can do is to fetch the page from the server (or just the HTML you need) and then shove it in an HTMLPanel.
Ian http://examples.roughian.com 2009/7/10 Petein <[email protected]> > > When programming in jsp you can use the jsp:include when you want to > include an html file in that part where the tag is. Can i do something > similar in my gwt web app? > > Like when i press a button to do > > rp = RootPanel.get("mainContainer"); > rp.clear(); > //here do the include > > > This will help me separate html from my gwt web application and when > pressing several buttons to load the specific context. Any ideas? > > > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
