function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Praveen Kumar JhaPraveen Kumar Jha 

Contact Standard Set Controller to display all contacts

Create a Visualforce page that uses Contact Standard Set Controller to display all contacts in the org.
Vidhyasagaran MuralidharanVidhyasagaran Muralidharan
<apex:page standardController="contact" recordSetVar="con" >
    <apex:form >  
            <apex:pageBlock >         
            <apex:pageBlockTable value="{!Con}" var="c" >
                   <apex:column  value="{!c.Name}"/>
                    other columns
                     </apex:column>
</apex:pageBlock table>
</apex:pageblock>
<apex:form>
</apex:page>