Hi, I acquired a script, which is supposed to allow the user to save the generated content as a file. For some reason, the "Save As" option does not get displayed, and the generated content only gets displayed within a browser windows. Is it possible that there is some setting within the IE browser that is causing this to happen? Please help...
This is the section of the code that is designed to allow saving the content as a file.
[code=perl]
if ($needcsv) {
print "Content-type: application/octet-stream\n\n"
} else {
print "Content-type: text/html; charset=utf-8\n\n"
[/code]
This is the section of the code that is designed to allow saving the content as a file.
[code=perl]
if ($needcsv) {
print "Content-type: application/octet-stream\n\n"
} else {
print "Content-type: text/html; charset=utf-8\n\n"
[/code]
Comment