No Results
Search Tips:
- Please consider misspellings
- Try different search keywords
Newer Version Available
Associating a Standard Controller with a Visualforce Page
To associate a standard controller with a Visualforce page, use the standardController attribute on the <apex:page> tag and assign it the name of any Salesforce object that can be queried using the Force.com API.
For example, to associate a page with the standard controller for a custom object named MyCustomObject, use the following markup:
1<apex:page standardController="MyCustomObject__c">
2</apex:page>