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
Vandy7Vandy7 

Onclick of command button

Hai everyone,

 

 

 

 

 

I have a command button used in one visualforce page.Can I navigate to another visualforce page onclicking that command button.Please help...........

 

 

 

 

sunil316sunil316

    public Pagereference cancel()
    {
        PageReference prCancel = new PageReference('/apex/visualforcePageName');
        prCancel.setRedirect(true);
        return prCancel;
    }

 

 

hope this will help you

Shailesh DeshpandeShailesh Deshpande

you need to use the action attribute of command button which calls a function in your controller....

 

something like this :

 

<apex:commandbutton action = "{!go_to_other_ page}"  value = "take me other page"/>

 

and in your controller define a function called go_to_other_ page()

 

public Pagerefernce go_to_other_ page()

{

     // place the code that sunil has given

}