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
sachin sabusachin sabu 

VisualForce Page Redirect

How To Redirect toa new VF Page when a Button clicked &&
how to upload an image in VF, like upload profile pic..
 
Vivek DVivek D
1. Use PageReference method to redirect to a new VF page 
For example :-
public PageReference redirectToMyVFPage(){
      PageReference page = new PageReference('/apex/MyPageName');
return page;
}

2. You need to use apex file input type. The usage can be different for different scenarios.