You need to sign in to do that
Don't have an account?

Not getting the account Name
In visualforce developer guide Page no :19
<apex:page standardController="Account">
Hello {!$User.FirstName}!
<p>You are viewing the {!account.name} account.</p>
</apex:page>
You can check the same page number 19, which talks about bringing an account record into the current context.
From the doc:
Regards,
Satish Kumar
Please mark my answer as a solution if it was helpful so it is available to others as a proper solution.
If you felt I went above and beyond, please give me Kudos by clicking on the star icon.
All Answers
Hi,
Is it the account name or the user first name which is not being displayed.
If it is the User's First name:
You can check in the User Detail page if there is a First Name saved for the user.
If it is the account name which is not being displayed, check the URL. It should have the Account ID as a parameter.
The url should be something like:
https://instance.salesforce.com/apex/<Your Page Name>?id='The ID of the Account'
Hope this helps.
Regards,
Satish Kumar
Please mark my answer as a solution if it was helpful so it is available to others as a proper solution.
If you felt I went above and beyond, please give me Kudos by clicking on the star icon.
You can check the same page number 19, which talks about bringing an account record into the current context.
From the doc:
Regards,
Satish Kumar
Please mark my answer as a solution if it was helpful so it is available to others as a proper solution.
If you felt I went above and beyond, please give me Kudos by clicking on the star icon.
In the URL give like this
https://ap1.salesforce.com/apex/YourPageName?id='SOmeID'
Note:
ap1 - Your org instance
YourPageName - Name of your page
SOmeID - One Account id present in your organisation
If this post is helpful please throw Kudos.If this post solves your problem kindly mark it as solution.
Thanks