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

Error VisualforceArrayList.name
Error 'VisualforceArrayList.name'
<apex:page controller="MyController22">
<apex:pageBlock title="Retrieving Query String Parameters">
You are viewing the {!account.name} account.
</apex:pageBlock>
</apex:page>
Check in your controler is
account is list of account records
please share your controller.
this is my controller
public class MyController22 {
public List<Account> getAccount() {
return [SELECT id, name FROM Account
WHERE id = :ApexPages.currentPage().getParameters().get('id')]
}
}
Changeyour controller like this
Try this: