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
bhanu challengebhanu challenge 

it the vf page on custom object

plz see it
Amit Chaudhary 8Amit Chaudhary 8
remove space from line number 7. like  below code
<apex:page controller="s1">
<apex:form>
 <apex:pageBlock>
 <apex:pageBlockTable value="{!pro}" var="p">
 <apex:column value="{!p.Name}"/>
 <apex:column value="{!p.Amount_Paid__c}"/>
 <apex:column value="{!p.DOB__c}"/>
 <apex:column value="{!p.Email__c }"/>
   </apex:pageBlockTable>
   </apex:pageBlock>
</apex:form> 
</apex:page>
Let us know if this will help you