Hi gurus...
In my web app registration process I'm considering adding an "email activation" system.
This mail will contain a web address that will follow a specific format as follows:
www.mywebapp.com/activation/RandomIDValue
Random IDValue will be created and added to database during registration.
How can I retrieve the RandomIDValue from the entered web address so that I can use it in my code?
[EDIT] found how to do it using a filter class ... the request holds all the needed data!
In my web app registration process I'm considering adding an "email activation" system.
This mail will contain a web address that will follow a specific format as follows:
www.mywebapp.com/activation/RandomIDValue
Random IDValue will be created and added to database during registration.
How can I retrieve the RandomIDValue from the entered web address so that I can use it in my code?
[EDIT] found how to do it using a filter class ... the request holds all the needed data!
Last edited: