Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
File security access credentials
Message
General information
Forum:
Visual FoxPro
Category:
Windows API functions
Environment versions
Visual FoxPro:
VFP 9
OS:
Windows XP
Network:
Windows 2003 Server
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01047004
Message ID:
01047035
Views:
9
Hi Don,

I apologize for not answering directly to your question.

Why don't you shoot ZIP file back to a client through HTTP by setting Content-Type and Content-Disposition headers?

- client requests data by clicking on a link
- your server prepares temp zip file
- then reads it into a string variable
- sends back this variable as a new page

An example of ASP code:
Response.AddHeader "ContentType", "application/zip"
Response.AddHeader "Content-Disposition", "attachment; filename=somename.zip"
Response.Write(<...file-to-string...>)
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform