I am developing a web application in grails in which, when I click on a link to an email user, it redirects to my grails web page. My requirement is to get access to the parameters of the http request, which I passed through the link in the email on my gsp page.
Example: - I passed the link http://example.com/testpage?a=something&b=12345 , and when the user clicks on this link, he redirects to http://example.com/testpage , and then I can get the parameter values from the request.
Like a=something and b=12345 . Thanks in advance.
Ravi
source share