1.4K
How to create standard ‘New’ button on Visualforce page?
Please follow the below instructions:
<apex:outputLink value=”{!URLFOR($Action.Account.New)}”>Create New Account</apex:outputLink>
use the same way to other objects (both Standard/Custom Objects) to change “Account” to whatever object if you need.
For Example:
$Action.Account.New (Salesforce Standard Object)
$Action.Opportunity.New (Salesforce Standard Object)
$Action.Applications__c.New (Salesforce Custom Object)