KKbes
2023-07-19 955453de1d14e678b5b8c76fd73905effdb7cc0b
1
2
3
4
5
6
7
8
9
10
<apex:page standardController="Account">
    <apex:pageBlock title="Account Details">
        <apex:pageBlockSection title="Account fields">
            <apex:outputField value="{!Account.Name}" />
            <apex:outputField value="{!Account.Type}" />
            <apex:outputField value="{!Account.Phone}" />
            <apex:outputField value="{!Account.NumberOfEmployees}" />
        </apex:pageBlockSection>
    </apex:pageBlock>
</apex:page>