Trigger a file download: https://alwaysepst.blob.core.windows.net/ulm-my/Projects/UnileverMT/CompetitorReport/201901/AeonBigAmpangOverdue11days_20190111T170348680.jpg
Opens a webpage: http://personal.psu.edu/xqz5228/jpg.jpg
Trigger a file download: https://alwaysepst.blob.core.windows.net/ulm-my/Projects/UnileverMT/CompetitorReport/201901/AeonBigAmpangOverdue11days_20190111T170348680.jpg
Opens a webpage: http://personal.psu.edu/xqz5228/jpg.jpg
The server that the first url points to returns a header Content-Type: application/octet-stream
which tells the browser to trigger a file download whereas the second url has a header Content-Type: image/jpeg
which the browser is able to interpret by itself as an image file.
If you were trying to create this behaviour, the first example isn't really an accepted way of triggering a download. See this answer for more details on that.
There's also a download
attribute for the a
element in html. See here.