You need to sign in to do that
Don't have an account?
Vijay 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
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
Use StandardController for this.
<apex:page StandardController="Account">
{!acoount.columna}
{!acoount.columnb}
{!acoount.columnc}
....
{!acoount.column10}
</apex:page>
Thanks,
Mallesh