Hello,
I'm new to wicket and i want to develop a page with user friendly url.
So in my application class i've added this line;
mountBookmarkablePage("product", showProduct.class);
so my page's url looks like this;
http://localhost:8080/app/product/p/14
with this url i can contstruct the page with parameter p = 14.
Everthing works perfect until when i add a link to this page.
when user clicks to link it gives page expired error.
When i removed "mountBookmarkablePage("product", showProduct.class);"
definition from application class it works.
Is there anyway to use links with user friendly urls?
Thanks,
--
M. ONUR CANCI