I am trying to download image from <img src="...">.
If the src contains the file name and extension, I can download image simply passing url to my program.
However, when the src does not contains file name and extension, like
<img style="-webkit-user-select: none; cursor: zoom-in;" src="https://secure.somewebsite.net/website/member.php/1/folders/get_attach?mail_id=11111&attach_id=1">
it is possible to download the image from C# code?
Thank you.