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
alaschgarialaschgari 

Publish VF Page as Excel with Image

Hey folks!

 

<apex:page standardcontroller="CustomObject__c" extensions="SF42_CustomObjectControllerExtension" showHeader="false" contenttype="application/vnd.ms-excel#{!c.Name}.xls" cache="true">

(...)

<img width="143" height="45" src="https://abcde.com/logo.png" />

(...)

 

 

I want to publish a VF page with an image.

The image has an external 'https' URL.

At the moment the image is not visible once the excel file is generated.

 

How can I make it visible?

 

Thank you very much

Josh :-)