Created
September 12, 2019 15:55
-
-
Save DataSolveProblems/3555bce2680682567c8ff4d03d882c99 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<apex:page standardController="Contact"> | |
<apex:pageBlock title="Account Summary"> | |
<apex:pageBlockSection> | |
First Name: {! Contact.FirstName} <br/> | |
Last Name: {! Contact.LastName} <br/> | |
Owner's Email: {! Contact.Owner.Email} <br/> | |
</apex:pageBlockSection> | |
</apex:pageBlock> | |
</apex:page> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment