Skip to content

Instantly share code, notes, and snippets.

@suddeb
Created August 3, 2015 10:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save suddeb/11e7717475848a0b93d8 to your computer and use it in GitHub Desktop.
Save suddeb/11e7717475848a0b93d8 to your computer and use it in GitHub Desktop.
<apex:page controller="SingleController">
<apex:form>
<apex:pageBlock>
<apex:pageBlockSection columns="2">
<apex:outputText value="Enter your name"></apex:outputText>
<apex:inputText id="nameId" value="{!name}"/>
</apex:pageBlockSection>
<apex:pageBlockSection columns="2">
<apex:commandButton id="buttonId1" action="{!goToSecondPage}" value="Enter"/>
</apex:pageBlockSection>
</apex:pageBlock>
</apex:form>
</apex:page>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment