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
Sajila KadayaprathSajila Kadayaprath 

URL to the standard new page of an object

Hi,

I have overridden 'New' button to redirect to my VF page. I have a 'Create 'button in my VF page which I want to be redirected to the standard New page of the object.

I want to get the Url of the standard page.

Appreciate your Help.

Thanks,
​Sajila
 
Shrikant BagalShrikant Bagal
Use following tag for redirect to New Case Record Page:

 
<apex:commandButton action="{!URLFOR($Action.Case.NewCase)}" value="Create a case"/>

If its helps, please mark as best answer so it will help to other who will serve same problem.
T​hanks!