
Force.com Cookbook Sample Code
Chapter 13: Getting Started with Visualforce - Creating Your First Visualforce Controller
To download all the code samples, access the Cookbook. -
<apex:page standardController="Account">
<apex:pageBlock title="Hello {!$User.FirstName}!">
You belong to the {!account.name} account.<br/>
You're also a nice person.
</apex:pageBlock>
<apex:detail subject="{!account}" relatedList="false"/>
<apex:relatedList list="OpenActivities" subject="{!$CurrentPageReference.parameters.relatedId}"/>
</apex:page>
Sample code provided by salesforce.com. All rights reserved.