Home > OS >  Image from FTP not getting displayed on HTML page in asp.net core
Image from FTP not getting displayed on HTML page in asp.net core

Time:12-18

i have made a page in HTML and i want to display some images on that page which are placed on FTP folder the method i am using is

<img src="ftp://ftp_user:[email protected]/Folder/image.jpg"/>

but image not getting displayed. Please help! Top

CodePudding user response:

<img src="https://servername/Folder/image.jpg"/>

please insert here domain link not ftp details

  • Related