Frage

I have one page that shows links, and I have some text data. How can I make using C++ CGI that by clicking on hyperlink "Save As" dialog will appear and certain amount of my text will be saved with user-defined path and name to the file on the users filesystem.

Actually, main question is how to show "Save as" dialog. After it, I think, everything will be easy.

War es hilfreich?

Lösung

Just set an appropriate content-type header and then output the file.

The browser takes care of the rest. Any file type it doesn't recognize causes the Save as dialog to be displayed.

Andere Tipps

They key to forcing the "Save as" dialog with a MIME type the browser can display is the Content-Disposition header.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top