First custom controller.page
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 controller="MyFirstController">
<apex:pageBlock title="Hello {!$User.FirstName}!">
This is your new page for the {!name} custom controller. <br/>
</apex:pageBlock>
</apex:page>
Sample code provided by salesforce.com. All rights reserved.
