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
Ram ChaturvediRam Chaturvedi 

When i click on login button i want to redirect directly on specific page or tag , is it possible ?

Naveen Rahul 3Naveen Rahul 3

in your controller or method  use this after login

 

public methodname(){

 try{

      //login code
     if(user logged in){
            PageReference pageRef = new PageReference('http://www.google.com');
           return pageRef;
      }
   }catch(e){
    //error
   }
}