Skip to content

Instantly share code, notes, and snippets.

@britishboyindc
Created February 19, 2018 15:46
Show Gist options
  • Save britishboyindc/566ed0c7f9c7a362735019638d5d413f to your computer and use it in GitHub Desktop.
Save britishboyindc/566ed0c7f9c7a362735019638d5d413f to your computer and use it in GitHub Desktop.
<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}"/>,
&nbsp;
<apex:outputField value="{!opportunity.Account.BillingState}"/>
&nbsp;
<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