Click to See Complete Forum and Search --> : Download window in ASP


Gunner
12-25-2003, 02:25 AM
I'm using payapls IPN feature. What I want to do is after everything has been verified and the transaction has completed I have it so that the purchaser receives an email with a unique code that they have to enter in order to download the script. Everything works fine except that I cant get the download to work without proving a link and the thing is I dont want them to see were the file is on the server. I have tried the following with no luck.

Server.Transfer "myfile.zip"

Server.Execute "myfile.zip"

Response.Redirect "myfile.zip"

Any Ideas?

russell_g_1
12-27-2003, 11:22 AM
You could copy the file from it's current location to a temp one for that user's session. It would be ok to give them a link then I suppose. The temp dir for the session could be cleared when the session ends.