params.put("str", "åäö");
        setResponsePage(MyPage.class, params);
But on MyPage the string is displayed as "åäö" !!?

You are sending non-ASCII characters so maybe you could URLEncode the 
characters before sending them?

params.put("str", URLEncoder.encode("åäö", "UTF-8"));

And then get them on the other page with:

URLDecoder.decode(params.getString("str"), "UTF-8");

-- Edvin



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to