Hi all
Can I control parameter order?
I have been creating Blog software and using it.
I noticed parameter order changed. (sorry I don't know what change is trigger)
At Application class ,WebPage class is mounted.
mountBookmarkablePage("/page", Hoo.class);
At WebPage class, BookmarkablePageLink created.
PageParameters param = new PageParameters();
param.put("param1", "string1");
param.put("param2", "string2");
BookmarkablePageLink link = new BookmarkablePageLink("link", Hoo.class, param);
I expect that URL like this.
/page/param1/string1/param2/string2
But actual like this.
/page/param2/string2/param1/string1
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]