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
Arul Bernard I 14Arul Bernard I 14 

How to use apex iframe and apex include in same vf page?

<apex:page standardController="Process_Sheet__c"  extensions="AttachmentViewer"  showHeader="false" >          
            <apex:include pageName="accPDF"/>
            <apex:repeat value="{!att}" var="a">
            <apex:iframe src="{!URLFOR($Action.Attachment.Download, a.Id)}" height="400" />
            </apex:repeat>            
</apex:page>

In the page only apex include is working iframe is not working plz help me ....
 Thanks in Advance
SandhyaSandhya (Salesforce Developers) 
Hi,

Make sure that a.Id is the value of Id not an object.

Best Regards,
Sandhya
Arul Bernard I 14Arul Bernard I 14
Sorry Can't get you