2008/2/2, oliverw <[EMAIL PROTECTED]>:
>
>
> Short question: Let's say we have a user registration page. Upon success a
> result page is displayed using setResponsePage showing some kind of
> registration summary . Is there a way to avoid passing the database
> user_id
> of the newly created user to the result page via PageParameters and thus
> giving away internal information - the user_id in this case? Or is this
> just
> something we have to live with?
>
>
Hi,
  Can't you just proceed this way:
setResponsePage(new SummaryPage(userdId));

i.e. pass the id as a parameter to the summary page constructor ?

Regards

Reply via email to