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
Swetha B 7Swetha B 7 

display object related attachments into vf page

Dear friends,

how to display object related attachments into Visualforce page.

Thanks for your quick response!
Raj VakatiRaj Vakati

<apex:relatedList subject="{!account}" list="CombinedAttachments" /> 
Saroja MuruganSaroja Murugan
Please use below one.

<apex:relatedList subject="{!account}" list="NotesAndAttachments" />

Let me know if its works or not.

Thanks,
Saroja
SweetPotatoTec