
|
email this FAQ to a colleague
Q:
How do I send a bit stream back through an ISAPI and trick the browser into thinking that it is a file?
A:
Add these headers and the browser with think that your file is named foo.bar
Content-type: application/octect-stream name=foo.bar
Content-disposition: attachment; filename=foo.bar
Location: http:/foo.bar
- Jim Schmidt
|