Hi,
I would like to pass variables to a "thank you" page that is shown when my form is submitted.
Currently I am able to do this via the redirect params in post.POST.jsp of my custom submit action.
However, this means that the values are passed in the URL query string parameters.
I have a component on my thank you page that will read values from the request such as "firstName" and display them to the user.
This will work with query string parameters and as sightly protects against XSS it "should" be ok....but I don't really like giving users the ability to tamper with this by altering the query string.
I would much rather pass the values as attributes in the request (or using some other method).
Can I achieve this?
Adding attributes to the slingRequest in post.POST.jsp doesn't work - presumably as a new request is created for the final redirect.
Thanks,
Jim