Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dangt85/df870a07af503d8d7a3c to your computer and use it in GitHub Desktop.
Save dangt85/df870a07af503d8d7a3c to your computer and use it in GitHub Desktop.
Basic Visualforce page with standard controller
<apex:page standardController="SObject" tabStyle="Custom__tab/SObject" id="__Page" title="@@NAME@@">
<!--
Describe what this page is for.
-->
<apex:form>
<apex:pageMessages />
<apex:pageBlock title="Feature" mode="edit" id="thePageBlock">
<apex:pageBlockButtons>
<apex:commandButton action="{!save}" value="Save" />
</apex:pageBlockButtons>
</apex:pageBlock>
</apex:form>
</apex:page>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment