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
ankushankush 

Direct Visual Force Page to Visual Force TAB

Can some one Guide me How to redirect a page to VisualForce Tab with name Appl_Cntcs

I am trying the below but it is not opening

PageReference pr = new PageReference('/Appl_Cntcs/o');
      pr.setRedirect(true);
      return pr;
Best Answer chosen by ankush
Pankaj_GanwaniPankaj_Ganwani
Hi,

Instead of redirecting to vf tab you can directly redirect to vf page itself

PageReference pr = new PageReference('/apex/pagename');
      pr.setRedirect(true);
      return pr;