Created
June 8, 2015 13:16
-
-
Save dangt85/df870a07af503d8d7a3c to your computer and use it in GitHub Desktop.
Basic Visualforce page with standard controller
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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