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
Aishwarya P 4Aishwarya P 4 

unable to display image

<apex:page sidebar="false" showHeader="False">
    <apex:image id="theImage" value="C:\Users\Desktop\Notepad\SE.png" width="220" height="55": />  
</apex:page>

This is my code.Please help
@GM@GM
Please upload the image as static resource and refer that static resource path in VF

Example :

<apex:page showHeader="false" sidebar="false" standardStylesheets="false">
  <apex:image alt="cats" title="cats" url="{!URLFOR($Resource.vfimagetest, 'cats/kitten1.jpg')}"/>
</apex:page>

Here vfimagetest(zip file) is static resource & has folder cats in which kitten1 image peresent 


Hope this helps.

Regards,
GM