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
Javier Jove 7Javier Jove 7 

Could you help me with this trailhead "Using Standard Controllers"?

User-added image
Best Answer chosen by Javier Jove 7
Oscar Alejandro Garcia BenitezOscar Alejandro Garcia Benitez
<apex:page standardController="Contact" >
    <apex:pageBlock title="Contact View">
        <apex:pageBlockSection >
            First Name: {! Contact.FirstName } <br/>
            Last Name: {! Contact.LastName } <br/>
            Owner's Email: {! Contact.Owner.Email} <br/>
        </apex:pageBlockSection>
    </apex:pageBlock>
</apex:page>

I hope that will help you.