Reputation: 1115
I have a link
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.
Upvotes: 1
Views: 110
Reputation: 14880
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.
Upvotes: 1