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
  • 13,209
  • 30
  • 105
  • 134
User7291
  • 1,055
  • 3
  • 24
  • 67

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
  • 13,209
  • 30
  • 105
  • 134