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
SUMIT BANERJEESUMIT BANERJEE 

On page load visualforce I want to redirect page into standard page salesforce link

Chandra Sekhar CH N VChandra Sekhar CH N V
Think you are looking for something like below - 

Use action method on your visual force page -
​<apex:page ............   action="{!methodname}">

and in your controller use PageReference method and redirect your page accordingly - 
......

pageref.setRedirect(True);

 
AryamAryam
Is it possible on load of the VF , and later redirect to standard page for which I have a link?This is my requirement too.