Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <apex:page controller="myController">
  2. <apex:outputText value="{!total}"/>
  3. </apex:page>
  4.  
  5. public with sharing class myController {
  6. private Integer total;
  7.  
  8. public Integer getTotal() {
  9. total = [SELECT count() FROM Account]; // Example for standard Account objects
  10. return total;
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement