Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Use Standard Controllers from (module - Visualforce Basics)
- -------------------------------------------------
- SOURCE CODE: ContactView (Visualforce page)
- <apex:page standardController="Contact">
- <apex:pageBlock title="Contact Summary">
- <apex:pageBlockSection>
- First Name: {! Contact.FirstName } <br/>
- Last Name: {! Contact.LastName } <br/>
- Owner Email: {! Contact.Owner.Email } <br/>
- </apex:pageBlockSection>
- </apex:pageBlock>
- </apex:page>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement