I have uploaded images to my form using the Upload field type. How can I refer this image in my HTML View?

I have uploaded images to my form using the Upload field type. How can I refer this image in my HTML View?

The image/file URL which is stored via the file upload field will be in the format given below:

https://creatorexport.zoho.com/DownloadFile.do?filepath=/<FileUploadFieldName>&sharedBy=<userName>&appLinkName=<appName>&viewLinkName=<viewName>;

In your HTML view, you can generate the image URL of the above kind and display it in the HTML view. Below is the sample HTML that you can use in your HTML view.

<img src='https://creatorexport.zoho.com/DownloadFile.do?filepath=/<FileUploadFieldName>&sharedBy=<userName>&appLinkName=<appName&viewLinkName=<viewName>'>

To fetch the images from your form and insert it in your HTML view, you can use the fetch records task as shown in the format given below, where Input.ImageName is the parameter defined in the HTML view. 

rec = Form [Image_Name = input.ImageName];
<img src='https://creatorexport.zoho.com/DownloadFile.do?filepath=/<%=rec.FileUpload%>&sharedBy=userName&appLinkName=app1&viewLinkName=view1'>

    • Related Articles

    • Image Type

      This question type allows you to upload images as the answer choices to a question; the respondents can select an image from the options. How do I add an image type question in my survey? Click Image Type in the question types listed on the left ...
    • Exploring images

      The Images tab under Library module allows you to upload or import images and store them for future use.  You can either upload images from your system or import images from image storage hubs like Google Photos, Flickr, Bigstock, Giphy and Unsplash. ...
    • How do I add an image type question in my survey?

      Image Type question type allows you to upload images as the answer choices to a question; the respondents can select an image from the options.  To add an image type question in my survey: Click Image Type in the question types listed on the left ...
    • How do I add an image type question in my survey?

      Image Type question type allows you to upload images as the answer choices to a question; the respondents can select an image from the options.  To add an image type question in my survey: Click Image Type in the question types listed on the left ...
    • Import HTML

      If you are ready with your HTML designs and related CSS, you can browse and select the HTML file along with the related images and upload them and add them as your own template. Upload HTML content After adding the basic details of your email ...