On Thu, Nov 20, 2008 at 16:21, bennyb <[EMAIL PROTECTED]> wrote:
> [snip]
>
> - Is there a way to package all those HTML files into one bundle (DLL
> file)?
I've never touched ASP, so can't comment on this one.
> - Also, is there a way to detect the Request QueryString when the
> application starts (onModuleLoad)?
The host page doesn't have to be a static page you know, it can be a
dynamic page. So you can have to host page do generate sth like this
dynamically:
var dictionary = {
foo: "bar"
};
where "bar" is the value of your query string.
You can then use a Dictionary to access the key/value pairs above:
public void useDictionary() {
Dictionary dictionary = Dictionary.getDictionary("dictionary");
String apple = dictionary.get("foo");
}
HTH.
-- Joe
--
There are 3 kinds of people in the world: those who can count, and
those who can't.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---