function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
DileepDileep 

how can I get VF page query strings if i am in lightning experience.  

I have a VF page which contains a output link and passing some values as query string to another VF page.  
I am using the same vf pages in lightning experience but the problem i am facing is i am not getting Query string values, when i  switcehd to lightning experice. how can I get VF page query strings if i am in lightning experience.  
Yogesh SheteYogesh Shete
HI Dileep,

Please use "{!URLFOR($Page.[PageName], null, [queryParamName=queryParamValue, ..])}" in output link for navigating custom VF page in both classic and Lightning mode. If you are using static url it will not work in Lightning mode.

If you are still facing problem with above solution then please share output link code snipplet.