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
Vijay sidaraddiVijay sidaraddi 

How to full data to VF page from an account

Hi

i have Account object which is having ten columns among that i  want column a , columnB,column c, and column D data  to 
display in VF page How to do it?

Thanks
Vijay
muppuri malleswaraiahmuppuri malleswaraiah
Hi Vijay,

Use StandardController for this.

<apex:page StandardController="Account">
{!acoount.columna}
{!acoount.columnb}
{!acoount.columnc}
....
{!acoount.column10}
</apex:page>

Thanks,
Mallesh