Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Getting arguments in url

    Hi
    Is there way to get the arguments provided in the URL? For example I use this url to access my app

    http://localhost:8080/MyApp/MyApp.html

    I'd like to send some arguments in this url by suffixing "?<args>". Can you please tell me where and how I can read these arguments.
    Thanks.

    #2
    com.google.gwt.user.client.Window.Location.getParameter("foo");

    By the way: this is pure gwt - nothing in common with SGWT
    MichalG

    Comment


      #3
      Thanks MichalG, that works nicely for what I am trying to do.

      Comment

      Working...
      X