Extract parameter from URL using JSP
Hi All,
I have a requirement
My Pega Login URL is something like
Https://www.pega.com/prweb/standard?param1=1234
I want to capture the parameter from url on submit (it has to happen even before login happens).
I tried updating web-login to get the param using js and was able to do so, now my another requirement is pass the parameter to a Datapage and use it's data.
Issue is i cannot pass js variable to JSP, and I am not finding any way to extract the parameter from url in JSP itself
Note:- Already tried request.getParameter() i.e not working
So how to do this?? Any ideas??