Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2015
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <apex:page StandardController="Account" recordSetVar="accounts">
  2. <apex:form >
  3. <apex:pageBlock>
  4. <apex:pageBlockSection >
  5. <apex:repeat value="{!accounts}" var="acc">
  6. <apex:inputField value="{!acc.name}"/>
  7. <apex:CommandButton value="save" action="{!save}"/>
  8. </apex:repeat>
  9. </apex:pageBlockSection>
  10. </apex:pageBlock>
  11. </apex:form>
  12. </apex:page>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement