Created
February 19, 2018 15:46
-
-
Save britishboyindc/566ed0c7f9c7a362735019638d5d413f 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="Opportunity" > | |
<apex:outputPanel> | |
<apex:outputText>Thanks!</apex:outputText> | |
<br/> | |
<apex:outputField value="{!opportunity.Amount}"/> <br/> | |
<apex:outputField value="{!opportunity.CloseDate}"/> <br/><br/> | |
<apex:outputLabel>Household</apex:outputLabel><br/> | |
<apex:outputField value="{!opportunity.Account.Name}"/><br/> | |
<br/> | |
<apex:outputField value="{!opportunity.Account.BillingStreet}"/><br/> | |
<apex:outputField value="{!opportunity.Account.BillingCity}"/>, | |
| |
<apex:outputField value="{!opportunity.Account.BillingState}"/> | |
| |
<apex:outputField value="{!opportunity.Account.BillingPostalCode}"/> | |
</apex:outputPanel> | |
</apex:page> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment