<html xmlns:wicket="http://wicket.apache.org">
<wicket:head>
<title>Wicket Examples - niceurl</title>
</wicket:head>
<body>
<wicket:extend>
<p>
This example displays how you can work with 'nice' urls for bookmarkable pages.
</p>
<p>
These links refer to pages that were mounted one by one <br />
<a wicket:id="page1Link">
Click this BookmarkablePageLink to go to Page 1
</a><br/>
<a wicket:id="page2Link">
Click this BookmarkablePageLink to go to Page 2
</a>
 After Page 2 is displayed click refresh link to see url parameters in action <br />
<a wicket:id="page2LinkPp">
Same as page 2, but now the url parameters are encoded with placeholders in the segments
</a> <br />
<a wicket:id="page2LinkUp">
Same as page 2, but now the url parameters are encoded in the segments in Wicket 1.4 style
</a>
</p>
<p>
These links refere to pages that were mounted as a whole package <br />
<a wicket:id="page3Link">
Click this BookmarkablePageLink to go to Page 3
</a><br/>
<a wicket:id="page4Link">
Click this BookmarkablePageLink to go to Page 4
</a><br/>
<a wicket:id="page5Link">
Click this BookmarkablePageLink to go to Page 5
</a>
 After Page 5 is displayed click refresh link to see url parameters in action <br />
</p>
</wicket:extend>
</body>
</html>