• Ali Hassan 4
  • NEWBIE
  • 9 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 1
    Replies
Hi all, 
THis my code 
<apex:page standardController="Contact" >
<apex:pageBlock title="Contact View">

    <apex:pageBlockSection>
    First Name : {! Contact.FirstName } <br/>
    Last Name :  {! Contact.LastName } <br/>
    Email: {! Contact.Email } <br/>

    </apex:pageBlockSection>
       
    </apex:pageBlock>

</apex:page>

But keep getting this Error 
The page does not include a bound owner's email variable for the Contact record

I am not really sure what i am doing wrong 
 
Hi all, 
THis my code 
<apex:page standardController="Contact" >
<apex:pageBlock title="Contact View">

    <apex:pageBlockSection>
    First Name : {! Contact.FirstName } <br/>
    Last Name :  {! Contact.LastName } <br/>
    Email: {! Contact.Email } <br/>

    </apex:pageBlockSection>
       
    </apex:pageBlock>

</apex:page>

But keep getting this Error 
The page does not include a bound owner's email variable for the Contact record

I am not really sure what i am doing wrong