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
krishhReddykrishhReddy 

plz resolve this issue

User-added image
while developing an page with standard listcontrollers iam facing this isssue..
plz resolve 
any permission required???
m.elmoussaouim.elmoussaoui
the page is related to the Contact standard Object? if so your standardController should be Contact and not Contacts_c
What are you trying to do with this page? showing related contacts of an account?
Tejpal KumawatTejpal Kumawat
Hello Freind,

Use this snippt :
 
<apex:page standardController="Contact" recordSetVar="Contacts">
    <apex:pageBlock>
        <apex:pageBlockTable value="{!contacts}" var="a">
            <apex:column value="{!a.name}"/>
        </apex:pageBlockTable>
    </apex:pageBlock>
</apex:page>

If this answers your question mark Best Answer it as solution and then hit Like!