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
VVNRAOVVNRAO 

Reg: Merge Fields

Hi,

 

What is a merge field?

Where we use it?

 

thanks

 

 

 

ANKITAANKITA

Merge fields are used to place the values from the object.

 

Ex:

<apex:page>

 <apex:form>

        {!$user.firstname}

</apex:form>

</apex:page>

 

just execute this in VF page.

 

Thanks