1

I have a link

http://www.example.com/foldername/1.jpg

Is there a way to make this link usable ony once? In other words, if a user downloads this image and anyone tries to download it again (even the same user) the link will not work anymore.

bytecode77
  • 14,163
  • 30
  • 110
  • 141
User7291
  • 1,095
  • 3
  • 29
  • 71

1 Answers1

1

You could use a VB.NET script that reads the image from a protected directory and outputs it to the response stream and then simply delete this image from the directory.

See here how to write an image to the response stream.

Community
  • 1
  • 1
bytecode77
  • 14,163
  • 30
  • 110
  • 141